0
有三種for Java的超時功能Wedriver.Timeouts:如何在Python中的Selenium Webdriver上設置腳本超時?
- implcitlyWait
- pageLoadTimeout
- setScriptTimeout
我試圖查找蟒蛇相當於第三,但我無法找到它。以下是前兩者的python等價物。
- implicitly_wait(10)
- set_page_load_timeout(20)
有三種for Java的超時功能Wedriver.Timeouts:如何在Python中的Selenium Webdriver上設置腳本超時?
我試圖查找蟒蛇相當於第三,但我無法找到它。以下是前兩者的python等價物。
這是你在找什麼:
set_script_timeout(time_to_wait)
Set the amount of time that the script should wait during an
execute_async_script call before throwing an error.
Args :
time_to_wait: The amount of time to wait (in seconds)
Usage :
driver.set_script_timeout(30)
參考 - set_script_timeout