码迷,mamicode.com
首页 > 编程语言 > 详细

python+Selenium之拖动滚动条

时间:2019-04-17 20:54:15      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:for   测试   targe   com   move   @class   .exe   click   argument   

当我们做测试的时候,如果页面过长,就会定位元素失败,这时可以使用move_to_element方法跳到该元素的位置再操作:

from selenium.webdriver.common.action_chains import ActionChains

target = driver.find_element(By.XPATH, "//i[@class=‘EPLI_Ext‘]")
driver.execute_script("arguments[0].scrollIntoView();", target)
ActionChains(driver).move_to_element(driver.find_element(By.XPATH, "//i[@class=‘EPLI_Ext‘]")).click().perform()

python+Selenium之拖动滚动条

标签:for   测试   targe   com   move   @class   .exe   click   argument   

原文地址:https://www.cnblogs.com/AmyHu/p/10726011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!