2
如果頁面上不存在元素find_element_by_xpath()
需要太多的時間來掛起測試執行。有沒有什麼辦法在python中設置超時到find_element_by_xpath()
函數?Selenium webdriver find_element_by_xpath花費時間
如果頁面上不存在元素find_element_by_xpath()
需要太多的時間來掛起測試執行。有沒有什麼辦法在python中設置超時到find_element_by_xpath()
函數?Selenium webdriver find_element_by_xpath花費時間
您可以使用此代碼設置implicit wait -
ff = webdriver.Firefox()
ff.implicitly_wait(10) # seconds
這使得webdriver的等待10秒,當你試圖找到網頁上的元素在引發錯誤前。
讓我以不同的方式提出這個問題..... – 2012-07-26 11:11:34