gpt4 book ai didi

Python Selenium : Find object attributes using xpath

转载 作者:IT老高 更新时间:2023-10-28 20:52:25 24 4
gpt4 key购买 nike

我是 xpath 的新手,正在尝试使用 xpath 获取“值”的值:

<input type="submit" value="  Search  " class="long searchButton" style="width:190px !important;">

虽然通过 "type="submit" 很容易找到元素,例如:

browser.find_elements_by_xpath("//*[@type='submit']")

我一直无法弄清楚如何获得我需要的值,如:

browser.find_elements_by_xpath("//*[@type='submit']/@value")

有点出乎意料地给出了一个错误:

expression "//*[@type=\'submit\']/@value" is: [object Attr]. It should be an element

有什么办法解决这个问题吗?

编辑:xpath 是正确的,但它“返回”了一个 obj 属性,并且由于它不是元素,所以它是不允许的。我找不到 get_attr_by_xpath() 之类的方法或类似的方法。

最佳答案

我终于用 get_attribute("value") 为:

for i in browser.find_elements_by_xpath("//*[@type='submit']"):
print i.get_attribute("value")

关于Python Selenium : Find object attributes using xpath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12579061/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com