I'm wondering if it's possible to use webbrowser.open()
method, open the browser, get its handler (?), and use it in
driver = webdriver.Chrome()
command somehow (webdriver is from selenium)?
Is it feasible at all?
I'm using Python.
I'm wondering if it's possible to use webbrowser.open()
method, open the browser, get its handler (?), and use it in
driver = webdriver.Chrome()
command somehow (webdriver is from selenium)?
Is it feasible at all?
I'm using Python.
No, webbrowser.open()
is from another package unrealted to Selenium.
To interact with Selenium you have to use a Selenium driven WebDriver initiated Browsing Context.