Answers for "selenium driver quit and close"

1

difference between driver.close and driver.quit in selenium

close() method shall close the browser which is in focus. 
quit() method closes all the browsers. 
close() method closes the active WebDriver instance.
quit() method closes all the active WebDriver instances
Posted by: Guest on November-11-2021
1

selenium close current driver but don't quit

# driver.close() closes one tab
# driver.quit() quits the session

# this closes all tabs but doesnt quit the session as a whole
alltabs = driver.window_handles
for i in range(len(alltabs)):
	driver.switch_to.window(alltabs[i])
	driver.close();sleep(1)
Posted by: Guest on May-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language