python+selenium button定位方法

Posted 呆呆蒙蒙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium button定位方法相关的知识,希望对你有一定的参考价值。

报错内容:

selenium.common.exceptions.ElementClickInterceptedException

元素:

 

 

解决方法2种:

1、

tijiao=driver.find_element_by_xpath("html/body/div[12]/div[2]/div[1]/div[1]/div[3]/div[1]/button[2]/span")
driver.execute_script("arguments[0].click();",tijiao)

 

2、本元素采用第2种方法

btn[0]   : 元素

from selenium import webdriver

webdriver.ActionChains(self.browser).move_to_element(btns[0]).click(btns[0]).perform()

以上是关于python+selenium button定位方法的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 selenium (Python) 定位 Instagram 关注按钮

Selenium定位问题,用CSS,ID,name或xpath都行,怎么定位这个button.

Selenium 元素定位

selenium + python自动化测试unittest框架学习webdriver元素操作

selenium 自动化基础知识(各种定位)

selenium+python定位方式