selenium常用的API设置get方法最大加载时间
Posted `关关雎鸠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium常用的API设置get方法最大加载时间相关的知识,希望对你有一定的参考价值。
我们在进行自动化测试的时候,使用get方法打开页面时会等到页面完全加载完才会执行后续操作,
有时我们需要的元素已加载完成,而部分JS未加载完导致加载时间很长,这无疑增加了自动化测试的时间,
针对此情况,可使用set_page_load_timeout(seconds)方法设置超时时间,然后捕获超时异常,然后继续执行后续操作。
#encoding=utf-8 import time from selenium import webdriver from selenium.common.exceptions import TimeoutException import unittest class VisitUrl(unittest.TestCase): def setUp(self): self.driver = webdriver.Ie(executable_path = "e:\IEDriverServer") def test_visitURL(self): visitURL = "http://www.google.com" #限定页面加载时间最大为3秒 self.driver.set_page_load_timeout(3) try: self.driver.get(visitURL) except TimeoutException: print u‘页面加载超时!‘ #当页面加载时间超过设定时间,通过执行javascript来停止载,然后继续执行后续操作 self.driver.execute_script(‘window.stop()‘) time.sleep(2) def tearDown(self): self.driver.quit() if __name__ == ‘__main__‘: unittest.main()
以上是关于selenium常用的API设置get方法最大加载时间的主要内容,如果未能解决你的问题,请参考以下文章
UI自动化测试之selenium——selenium中的常用api