selenium BY定位

Posted bzdmz

tags:

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

By定位
通过对上面8种基本元素定位方式的学习,在使用过程种可以根据实际的情况去选择对应的的定位方式,我们可以用By来设置定位策略,具体语法如下:
find_element(By.ID,"kw")
find_element(By.NAME,"wd")
find_element(By.CLASS_NAME,"s_ipt")
find_element(By.TAG_NAME,"input")
find_element(By.LINK_TEXT,u"新闻")
find_element(By.PARTIAL_LINK_TEXT,u"新")
find_element(By.XPATH,"//*[@class=‘bg s_btn‘]")
find_element(By.CSS_SELECTOR,"span.bg s_btn_wr>input#su") 

上面这些使用的前提是需要导入By类:from selenium.webdriver.common.by import By
---------------------
作者:我的猪很厉害的
来源:CSDN
原文:https://blog.csdn.net/qq_32897143/article/details/80383502
版权声明:本文为博主原创文章,转载请附上博文链接!















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

selenium-元素定位

Python+Selenium学习笔记6 - 定位

selenium BY定位

python + selenium 元素定位方法

selenium元素定位

selenium的元素定位方法-By