曾听说过click操作不稳定,今天碰到了,分享一波
driver.get("D:\PythonFiles\wlxcUI\practice\检测代码\demo.html")
driver.maximize_window()
el = driver.find_element_by_name("mfile")
el.click()
通过name吵到的input元素,无法点击上传文件,更换为
ActionChains(driver).move_to_element(el).click().perform()标签:el,selenium,driver,点击,操作,click From: https://www.cnblogs.com/dumbleying/p/17333081.html
执行点击操作可以执行
原博:python--selenium:元素点击不到,你需要的点击方法都在这_selenium点击操作_Bierante的博客-CSDN博客