selenium python close browser code example

Example 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.

Example 2: close selenium webdriver python

driver.close()

Example 3: how to close a webpage using selenium driver python

driver.quit()

Example 4: how to close windows in selenium python without quitting the browser

for handle in driver.window_handles:
    driver.switch_to.window(handle)
    driver.close()