Trying to find a good way to set a maximum time limit for command execution latency in Selenium Python WebDriver. Ideally, something like:
my_driver = get_m
In python, the method to create a timeout for a page to load is:
Firefox and Chromedriver:
driver.set_page_load_timeout(30)
Other::
driver.implicitly_wait(30)
This will throw a TimeoutException whenever the page load takes more than 30 seconds.
TimeoutException