Selenium找界面元素

Selenium是一个用于Web应用程序测试的工具。前端界面自动化测试。

复制代码
from selenium import webdriver

# 创建 WebDriver 对象,指明使用chrome浏览器驱动
driver = webdriver.Chrome(r'你自己的本地路径')

# 调用WebDriver 对象的get方法 可以让浏览器打开指定网址
driver.get('https://www.baidu.com')

find_element()的使用

browser.find_element()方法用于在页面上查找单个元素

  1. By:它是一个定位元素的方法,比如ID,name,class name,tag name,link text,partial link text,xpath等。

  2. Value:它是某个定位元素的值,比如ID的值,name的值,class name的值,tag name的值,link text的值,partial link text的值,xpath的值等。

案例如下:

复制代码
查找ID为"username"的元素 
element = driver.find_element(By.ID, "username") 

查找name为"password"的元素 
element = driver.find_element(By.NAME, "password")

查找class name为"login-btn"的元素
element = driver.find_element(By.CLASS_NAME, "login-btn")

 查找tag name为"input"的元素 
 element = driver.find_element(By.TAG_NAME, "input")

查找link text为"Forgot Password?"的元素
element = driver.find_element(By.LINK_TEXT, "Forgot Password?")

查找partial link text为"Forgot"的元素 
element = driver.find_element(By.PARTIAL_LINK_TEXT, "Forgot")

查找xpath为"//input[@name='username']"的元素
element = driver.find_element(By.XPATH, "//input[@name='username']")

如何使得checkBox为选中状态:

需要选取checkBox整个div的id,或其他为对象

复制代码
browser.find_element(By.ID, "J_SelectAll1").click()
相关推荐
niuniu_66620 小时前
简单的自动化场景(以 Chrome 浏览器 为例)
运维·chrome·python·selenium·测试工具·自动化·安全性测试
suimeng61 天前
ChromeDriver的常用方法
java·selenium
niuniu_6662 天前
Selenium 性能测试指南
selenium·测试工具·单元测试·测试·安全性测试
莓事哒2 天前
selenium和pytessarct提取古诗文网的验证码(python爬虫)
爬虫·python·selenium·测试工具·pycharm
suimeng62 天前
基本元素定位(findElement方法)
java·selenium
mywpython2 天前
mac 最新的chrome版本配置selenium的方式
chrome·python·selenium·macos
软件测试曦曦2 天前
如何使用Python自动化测试工具Selenium进行网页自动化?
自动化测试·软件测试·python·功能测试·测试工具·程序人生·自动化
freejackman2 天前
Selenium框架——Web自动化测试
python·selenium·测试
互联网杂货铺2 天前
黑盒测试、白盒测试、集成测试和系统测试的区别与联系
自动化测试·软件测试·python·功能测试·测试工具·单元测试·集成测试
Feng.Lee2 天前
聊一聊缓存如何进行测试
功能测试·测试工具·缓存