selenium check if driver is open python

Solutions on MaxInterview for selenium check if driver is open python by the best coders in the world

showing results for - "selenium check if driver is open python"
Audra
09 Jul 2020
1>>> driver = webdriver.Firefox()
2>>> get_status(driver)
3'Alive'
4>>> driver.quit()
5>>> get_status(driver)
6'Dead'
7
Julian
27 Apr 2018
1>>> driver = MyFirefox()
2>>> print driver.session_id
3u'69fe0923-0ba1-ee46-8293-2f849c932f43'
4>>> driver.quit()
5>>> print driver.session_id
6None
7