python中的selenium模块进行自动化问题?
我在使用python中的selenium模块进行自动化操作时,出现了Message: element not interactable错误。我是在定位一个元素并且进行点击的时候出现的异常。以下是源代码
from selenium import webdriver
import time
#规避检测
option =webdriver.ChromeOptions()
option.add_experimental_option('excludeSwitches', ['enable-automation'])
#创建浏览器对象
driver =webdriver.Chrome(options=option)
#打开网址
driver.get('https://www.igxe.cn/')
time.sleep(2)
el =driver.find_element_by_xpath('//*[@id="js_top_div"]/div/div/div/ul/li/a') #定位元素
el.click() #点击元素
能解答下疑惑吗?
看下元素定位的对不对 百度下 元素定位异常了 看下定位的元素是否唯一 xpath路径这么长,还是练习个简单题吧
页:
[1]