测试积点老人 发表于 2021-8-23 13:16:56

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()    #点击元素
能解答下疑惑吗?

海海豚 发表于 2021-8-24 09:44:28

看下元素定位的对不对

bellas 发表于 2021-8-24 10:48:39

百度下

qqq911 发表于 2021-8-24 12:20:51

元素定位异常了

litingting0214 发表于 2021-8-24 14:40:21

看下定位的元素是否唯一

千里 发表于 2021-8-31 09:40:32

xpath路径这么长,还是练习个简单题吧
页: [1]
查看完整版本: python中的selenium模块进行自动化问题?