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

selenium基础--五种定位方式

时间:2020-03-11 16:58:00      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:port   field   方式   lse   pat   class   arch   int   selenium   

find_element_by_name
find_element_by_id
find_element_by_xpath
find_element_by_link_text
find_element_by_partial_link_text
find_element_by_tag_name
find_element_by_class_name
find_element_by_css_selector

 

from time import sleep
from selenium import webdriver

br = webdriver.Chrome()

url = "https://www.tmall.com"
br.get(url)

content = br.find_element_by_xpath(//*[@id="mallSearch"]/form/fieldset/div/button)
print(content)


br.close()

 

selenium基础--五种定位方式

标签:port   field   方式   lse   pat   class   arch   int   selenium   

原文地址:https://www.cnblogs.com/php-linux/p/12463359.html

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