selenium|selenium+python学习笔记-Message: element not visible

运行脚本时报错selenium.common.exceptions.ElementNotVisibleException: Message: element not visible
selenium|selenium+python学习笔记-Message: element not visible
文章图片

【selenium|selenium+python学习笔记-Message: element not visible】是因为脚本用id定位元素的,这个id 不是唯一的,在下边还有一个相同的id,修改了一下,用find_element_by_xpath(),多加一个标签,用上一层的标签定位出来这一个元素,如下

browser.find_element_by_xpath("//span[@id='expandor']").click() #报错的

修改后
browser.find_element_by_xpath("//li[@id='LDHTMBGL']/a/span[@id='expandor']").click() #正确的

附上代码,往上走了两层标签,看到li标签的class是唯一的。
selenium|selenium+python学习笔记-Message: element not visible
文章图片


    推荐阅读