我遇到一些问题,当我尝试获取href
,id
或text
等属性时,我无法使用{{1}执行此操作在XPath
- Selenium
中。
我必须这样做:Python
而不是:driver.find_element_by_xpath(XPath).get_attribute(attr)
我认为这是因为方法driver.find_element_by_xpath(XPath/@attr)
会检查输出是否为实数find_element_by_xpath
。
使用WebElement
语法是否有某种方法可以避免长get_attribute(attr)
?