欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

报错 MoveTargetOutOfBoundsException 的解决办法

程序员文章站 2022-04-16 08:52:25
...
# 将 滚动条 拖动到 xxxx 按钮,上端对齐
scroll_add_crowd_button = driver.find_element_by_xpath(xpath_button_add_crowd)

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

# 定位 添加条件 按钮,经观需要鼠标悬停

xpath_button_add_condition = '//span[contains(text(),"添加条件")]'

move_on_to_add_condition = driver.find_element_by_xpath(xpath_button_add_condition)
        ActionChains(driver).move_to_element(move_on_to_add_condition).perform()

time.sleep(2)

将 滚动条 拖动到 与将要 用 鼠标悬浮 的 元素的 平齐位置即可解决

相关标签: xpath selenium