使用webdriver滚动到元素?

使用webdriver滚动到元素?,第1张

使用webdriver滚动元素

您正在尝试使用Python运行Java代码。在Python /
Selenium中,

org.openqa.selenium.interactions.Actions
反映在
ActionChains
类中:

from selenium.webdriver.common.action_chains import ActionChainselement = driver.find_element_by_id("my-id")actions = ActionChains(driver)actions.move_to_element(element).perform()

或者,您也可以通过以下方式“滚动查看”

scrollIntoView()

driver.execute_script("arguments[0].scrollIntoView();", element)

如果您对这些差异感兴趣:

  • scrollIntoView与moveToElement


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5508334.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存