from selenium import webdriver获取find_element_by_xpath值
时间: 2023-11-28 20:03:32 浏览: 80
使用Selenium的WebDriver可以通过xpath表达式来查找元素,示例代码如下:
```
from selenium import webdriver
# 创建WebDriver对象
driver = webdriver.Chrome()
# 打开网页
driver.get("https://www.example.com")
# 查找元素
element = driver.find_element_by_xpath("//div[@class='example']")
# 输出元素的文本内容
print(element.text)
# 关闭浏览器
driver.quit()
```
在上述代码中,`driver.find_element_by_xpath()`方法的参数是一个xpath表达式,用于查找网页中符合条件的元素。在本例中,xpath表达式`//div[@class='example']`用于查找`class`属性为`example`的`div`元素。如果找到多个元素,只会返回第一个匹配到的元素。如果找不到匹配的元素,会抛出`NoSuchElementException`异常。
相关问题
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from time import sleep driver = webdriver.Chrome() driver.get('http://www.baidu.com') # 隐式等待5秒 driver.implicitly_wait(5) loc = (By.XPATH, '//input[@id="kw"]') driver.find_element(*loc).send_keys('selenium') driver.find_element(By.XPATH, '//input[@id="su"]').click() wait = WebDriverWait(driver, 20) loc = (By.XPATH, '//b[text()="selenium"]/parent::span') wait.until(EC.visibility_of_element_located(loc)) driver.find_element(*loc).click() sleep(3) driver.quit()写下注释
这段代码使用了Selenium库来控制Chrome浏览器自动化测试。具体注释如下:
```python
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from time import sleep
# 初始化一个Chrome浏览器实例
driver = webdriver.Chrome()
# 打开百度首页
driver.get('http://www.baidu.com')
# 隐式等待5秒
driver.implicitly_wait(5)
# 定位搜索框并输入关键词'selenium'
loc = (By.XPATH, '//input[@id="kw"]')
driver.find_element(*loc).send_keys('selenium')
# 定位搜索按钮并点击
loc = (By.XPATH, '//input[@id="su"]')
driver.find_element(*loc).click()
# 显式等待20秒,直到页面上的'selenium'元素可见
wait = WebDriverWait(driver, 20)
loc = (By.XPATH, '//b[text()="selenium"]/parent::span')
wait.until(EC.visibility_of_element_located(loc))
# 点击'selenium'元素
driver.find_element(*loc).click()
# 停留3秒后关闭浏览器
sleep(3)
driver.quit()
```
这段代码的功能是:打开百度首页,输入关键词"selenium"进行搜索,然后在搜索结果页面中点击"百度百科"中的"selenium"词条,最后停留3秒后关闭浏览器。其中使用了隐式等待和显式等待来控制程序等待页面加载完成。
改进这段代码import time from time import sleep from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.support.ui import Select import csv import unittest import ddt driver = webdriver.Chrome() driver.maximize_window() driver.get("http://10.2.39.8/ams/front/login.do?gotourl=http%3A%2F%2F10.2.39.8%2Fams%2Ffront%2Fasset%2Fasset_list.do") driver.implicitly_wait(5) driver.find_element_by_xpath('//*[@id="fmedit"]/div[1]/label[2]/input').click() driver.find_element_by_xpath('//*[@id="taskId"]').send_keys('23') driver.find_element_by_xpath('//*[@id="loginName"]').send_keys('20210205') driver.find_element_by_xpath('//*[@id="password"]').send_keys('20210205') driver.find_element_by_xpath('//*[@id="fmedit"]/div[7]/button').click() driver.find_element_by_xpath('//*[@id="leftmenu_asset_brand"]/a').click() driver.find_element_by_xpath('//*[@id="content"]/div[2]/div/div[1]/button').click() driver.find_element_by_id("title").send_keys("username") driver.find_element_by_id("code").send_keys("password") driver.find_element_by_css_selector('#submitButton').click()使用csv文件参数化username和password
可以使用ddt库来实现csv文件参数化,代码如下:
```
import time
from time import sleep
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.ui import Select
import csv
import unittest
import ddt
@ddt.ddt
class TestLogin(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome()
self.driver.maximize_window()
self.driver.get("http://10.2.39.8/ams/front/login.do?gotourl=http%3A%2F%2F10.2.39.8%2Fams%2Ffront%2Fasset%2Fasset_list.do")
self.driver.implicitly_wait(5)
def tearDown(self):
self.driver.quit()
@ddt.file_data('test_data.csv')
def test_login(self, username, password):
self.driver.find_element_by_xpath('//*[@id="fmedit"]/div[1]/label[2]/input').click()
self.driver.find_element_by_id("taskId").send_keys('23')
self.driver.find_element_by_id("loginName").send_keys(username)
self.driver.find_element_by_id("password").send_keys(password)
self.driver.find_element_by_css_selector('#fmedit > div:nth-child(7) > button').click()
self.assertIn('登录成功', self.driver.page_source)
```
其中,test_data.csv文件的格式为:
```
username,password
20210205,20210205
20210305,20210305
20210405,20210405
```
这样,就可以通过ddt库和csv文件实现对用户名和密码的参数化,从而实现自动化测试。
阅读全文