我试图点击“轻松应用”按钮"在linkedin工作搜索页面(beta变量)
alpha = driver.find_element_by_xpath("//button[.//span='Expand LinkedIn Features facet']")
alpha.click()
time.sleep(2)
beta = driver.find_element_by_xpath("//input[@type='checkbox']")
time.sleep(4)
beta.click()
使用此代码我收到以下错误。
selenium.common.exceptions.WebDriverException: Message: unknown error: Element <input type="checkbox" value="f_AL" name="linkedin-features-group" id="ember1311" class="search-s-facet-value__input"> is not clickable at point (322, 146). Other element would receive the click: <div id="ember2440" class="pt3 ember-view">...</div>
我试过这个,以及尝试按id(每次运行脚本时都会更改,以便最终无法正常工作)。
答案 0 :(得分:0)
您可以使用操作方法来解决它,
Actions action = new Actions(driver);
action.moveToElement("element name").click().perform();