Is there a way so I can get the page content from the page I launch using:
import webbrowser
url = 'http://docs.python.org/'
# MacOS
#chrome_path = 'open -a /Applications/Google\ Chrome.app %s'
# Windows
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
# Linux
# chrome_path = '/usr/bin/google-chrome %s'
webbrowser.get(chrome_path).open(url)
What I can see is that webbrowser does not seem to have any way to do that as I could do with Selenium. The problem is that I under some cicumstances can´t use Selenium on that page.
Is it possible to get the sessionID or windowID and try to connect with another library that would be able to get the content and even maybe press a row so it unfold that data?