close driver selenium python code example
Example 1: close selenium webdriver python
driver.close()
Example 2: how to close a webpage using selenium driver python
driver.quit()
Example 3: close and quit method
Two methods do same thing but, there is a small difference;
driver.close() is used to close the current browser that we are
running the test.
driver.quit() is used to close all the browser opened by Selenium
Webdriver.