Answers for "how to close a browser in selenium python"

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

how to close a webpage using selenium driver python

driver.quit()
Posted by: Guest on September-06-2020

Code answers related to "how to close a browser in selenium python"

Python Answers by Framework

Browse Popular Code Answers by Language