driver.set_page_load_timeout(3)
页面加载时间设置 3 秒,执行到某一步涉及页面加载如果加载时间超过 3 秒就会停止加载并抛出异常,其实这个时候页面内的元素已经加载出来了,我们在这一步进行异常捕获不让程序停止,然后直接执行下一步即可。
报错信息如下:
selenium.common.exceptions.TimeoutException: Message: timeout: Timed out receiving message from renderer: 3.000
def analyze_jira(driver, d): # 方案一:异常捕获方案 # 页面加载时间设置,超时会直接报错,将会报错的地方加个异常不过,完美解决问题 driver.set_page_load_timeout(3) for (k,v) in d.items(): driver.find_element_by_xpath('//input[@id="quickSearchInput"]').send_keys(k[4:]) try: # 查询操作,耗时很长 ActionChains(driver).send_keys(Keys.ENTER).perform() except Exception as e: print("抓到异常,页面停止加载,但是程序不停止。") time.sleep(1) # 提取页面指定元素的文本 question_zhuti = driver.find_element_by_xpath('//*[@id="summary-val"]').text;
还可以通过 set_script_timeout()
方法来解决问题。
def analyze_jira(driver, d): # 方案二:同时设置脚本执行超时时间方案 # 设置脚本报错之前的等待时间,这个小于等于上面set_page_load_timeout()设置的时间就不会抛错。 driver.set_page_load_timeout(3) driver.set_script_timeout(3) for (k,v) in d.items(): driver.find_element_by_xpath('//input[@id="quickSearchInput"]').send_keys(k[4:]) # 查询操作,耗时很长 ActionChains(driver).send_keys(Keys.ENTER).perform() time.sleep(1) # 提取页面指定元素的文本 question_zhuti = driver.find_element_by_xpath('//*[@id="summary-val"]').text;
set_page_load_timeout()
方法说明:
Set the amount of time to wait for a page load to complete before throwing an error.
翻译:
设置在抛出错误之前等待页面加载完成的时间。
set_script_timeout()
方法说明:
Set the amount of time that the script should wait during an execute_async_script call before throwing an error.
翻译:
设置脚本在execute_async_script调用期间抛出错误之前应该等待的时间。
喜欢的点个赞❤吧!