我正在尝试使用move_to_element单击硒python中的元素。但有时它不起作用。代码如下:
mapcanvas = wait.until(EC.element_to_be_clickable((By.ID,'map_canvas')))
action = webdriver.common.action_chains.ActionChains(browser)
action.move_to_element(mapcanvas).click(mapcanvas).perform()
经过大量搜索,我发现物理光标是否在浏览器内部move_to_element不起作用。(this link) 有解决此问题的解决方案吗?