browser.find_element(By.XPATH,doccontent).get_attribute('name')写法是否正确
时间: 2024-02-24 20:54:56 浏览: 97
这句代码有问题。`By.XPATH` 是指定使用 XPath 定位方式,而 `doccontent` 应该是一个 XPath 表达式,而非元素的 name 属性。
如果你想获取元素的 name 属性,可以使用如下代码:
```python
browser.find_element_by_xpath(doccontent).get_attribute('name')
```
其中,`find_element_by_xpath` 方法用于通过 XPath 定位元素,`get_attribute` 方法用于获取元素的属性值。
相关问题
element = browser.find_element_by_xpath(xpath) AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'
你提到的错误 `AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'` 表示在你的Python代码中,`WebDriver` 对象并没有`find_element_by_xpath` 这个属性。这通常是因为你在使用Selenium库的时候,没有导入正确的元素查找模块。
确保你在使用Selenium时已经正确地引入了`.webdriver.support.ui` 或 `.webdriver.common.by` 来访问这些查找方法,例如:
```python
from selenium.webdriver import Chrome
from selenium.webdriver.common.by import By
# 创建浏览器实例
driver = Chrome()
# 导入xpath查找方法
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
# 然后就可以这样使用了
element = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, "your_xpath_here")))
```
这里使用了`WebDriverWait`加上`expected_conditions`来确保元素加载完成后才能进行查找,避免因元素未加载而导致的`ElementNotVisibleException`或`NoSuchElementException`。
如果你仍然遇到问题,检查一下你的Selenium版本是否正确,并确认是否已经正确初始化了Web驱动程序。
改进这段代码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文件实现对用户名和密码的参数化,从而实现自动化测试。
阅读全文