码迷,mamicode.com
首页 > 其他好文 > 详细

selenium BY定位

时间:2019-02-10 23:41:50      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:tag   tail   元素定位   bsp   @class   tor   bdr   comm   过程   

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定位

标签:tag   tail   元素定位   bsp   @class   tor   bdr   comm   过程   

原文地址:https://www.cnblogs.com/bzdmz/p/10360311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!