python+Selenium之操作滚动条


当我们做测试的时候,如果页面过长,就会定位元素失败,这时可以使用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()

 

https://www.cnblogs.com/yoyoketang/p/6128655.html

https://blog.csdn.net/dzh0622/article/details/52066640


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM