selenium三大等待,sleep(强制)、implicitlyWait(隐式等待)、WebDriverWait(显式等待),主要记一下最后面的WebDriverWait。
WebDriverWait是三大等待中最常用也是最好用的一种等待方式,比起另外两种而言,B格更高、更智能。写法为:
#WebDriverWait(driver,等待总时长,查询间隔时间).until(EC.visibility_of_element_located((By.XPATH,Xpath公式)))
# 例如:
cj = '//span[text()="19/05/27"]/parent::p/parent::div/preceding-sibling::div[@class="announce-cont clearfix"]//a[text()="查看成绩"]'
WebDriverWait(driver,30,0.5).until(EC.visibility_of_element_located((By.XPATH,cj)))
在iframe中也可以使用WebDriverwait,例如:
WebDriverWait(driver,30,0.5).until(EC.frame_to_be_available_and_switch_to_it("login_frame_qq"))
# 其中"login_frame_qq"是iframe的name属性;
# "EC.frame_to_be_available_and_switch_to_it"这句话的意思是等待并切换至,也就是说这句话等同"EC.visibility_of_element_located"+"driver.switch_to_frame"
例子中的等待含义为总时长30S,每间隔0.5S查询一次until括号中的函数。EC为selenium.webdriver.support.expected_conditions的缩写,visibility_of_element_located的用法是查询后跟元祖中指定的元素是否可见。
要格外注意的是visibility_of_element_located()中只能传入一个函数,所以一般使用(By.XPATH,xpath)源码:
class visibility_of_element_located(object):
""" An expectation for checking that an element is present on the DOM of a
page and visible. Visibility means that the element is not only displayed
but also has a height and width that is greater than 0.
locator - used to find the element
returns the WebElement once it is located and visible
"""
def __init__(self, locator):
self.locator = locator
def __call__(self, driver):
try:
return _element_if_visible(_find_element(driver, self.locator))
except StaleElementReferenceException:
return False
再来看一下滚轮滑动的几种用法
1.滑动到指定元素顶端显示:
driver.execute_script('argument[0].scrollIntoView();',driver.find_element_by_xpath(xpath))
2.滑动到指定元素底端显示:
driver.execute_script('argument[0].scrollIntoView(false);',driver.find_element_by_xpath(xpath))
3.页面滑动到底端:
driver.execute_script('windows.scrollto(0,document.body.scrollHeight)')
4.页面滑动到顶端:
driver.execute_script('windows.scrollto(document.body.scrollHeight)')
其中包含指定元素的使用时只用注意scrollIntoView后是否跟随false,有则底端、无则顶端;其次页面滑动时只用注意最后是否从0开始,从0开始则为底端、无则顶端
顺带说一下driver.execute_script()这个函数,这个函数括号内主要跟随js语句
用法例如:
driver.execute_script('argument[0].scrollIntoView(false);'
'var a = argument[1]',driver.find_element_by_xpath(xpath),num1)
# 其带入的参数没有数量限制,只是语法必须使用js语法
🎁更多干货
完整版文档下载方式:
这些资料,对于从事【软件测试】等相关工作的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴我走过了最艰难的路程,希望也能帮助到你!以上均可以分享。
在评论区和我互动交流或者私❤我【软件测试学习】领取即可,拿走不谢。文章来源:https://www.toymoban.com/news/detail-542071.html
如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!文章来源地址https://www.toymoban.com/news/detail-542071.html
到了这里,关于selenium元素等待及滚动条滚动的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!