Id | Detail |
driver.quit() | It basically calls driver.dispose() method which in turn closes all the browser windows and ends the WebDriver session gracefully. Usability |
driver.close() | close() is a webdriver command which closes the browser window which is currently in focus. ... The remaining browser windows will not be closed. Usability |