python+Selenium之拖动滚动条
Posted Amy_Hu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
以上是关于python+Selenium之拖动滚动条的主要内容,如果未能解决你的问题,请参考以下文章