Answers for "stop selenium from closing browser"

1

selenium close browser

driver.close() #It closes the browser window on which the focus is set.

driver.quit() #It basically calls the driver.dispose method which in turn closes all the browser windows and ends the WebDriver session gracefully.
Posted by: Guest on May-28-2020
0

prevent selenium from closing

from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
Posted by: Guest on December-05-2021

Code answers related to "stop selenium from closing browser"

Python Answers by Framework

Browse Popular Code Answers by Language