我的程序没有正确点击复选框

时间:2016-05-19 14:18:26

标签: python selenium selenium-webdriver selenium-chromedriver

我使用的是硒 - 氯化物。

checkbox = driver.find_element_by_name('hidedup')
print(checkbox.location)

它将输出这些坐标(通过Page Ruler扩展名): enter image description here

enter image description here

我正在尝试(当第二张照片中的corrdinates相同时):

action = ActionChains(driver)
action.move_to_element_with_offset(checkbox, 5, -5).click().perform()

但它没有帮助

复选框的HTML代码

<input type="checkbox" name="hidedup" onchange="window.onchangehidedup(event)">

此外,当我使用Firefox驱动程序

时,问题并未发生

我已经试图找出如何解决它已经2天了,我请求你的帮助

0 个答案:

没有答案