我遇到了selenium python驱动程序的问题,功能:move_to_element_with_offset 似乎该函数只将鼠标移动到元素的中间
def setUp(self):
print "hello"
self.logger = setuplogging()
self.browser = webdriver.Firefox()
def _test_add_point(self):
body = self.browser.find_element_by_tag_name("body")
body.send_keys(Keys.UP * 20)
applet = self.browser.find_element_by_id("selected-applet")
pics = applet.find_elements_by_xpath(".//div[contains(@class, 'picture')]")
time.sleep(5)
real_pic = pics[0].find_elements_by_xpath(".//img")
action_chains = ActionChains(self.browser)
action_chains.move_to_element_with_offset(real_pic[0], 20, 20).perform()
time.sleep(5)
action_chains.click().perform()
time.sleep(10)
当我执行上面的代码时,它总是会点击到图片的中间,当我的期望是在这种情况下它会点击中心加偏移(20,20)。更改偏移量无济于事。使用move_by_offset函数也无济于事。
你能帮忙吗?