driver.quit method code example
Example 1: driver.close
driver.close() is used to close the current browser that we are
running the test.
Example 2: driver.quit method
driver.quit() is used to close all the browser opened by Selenium
Webdriver.
Example 3: close vs 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.