gpt4 book ai didi

python - Selenium 'WebElement' 对象没有属性 'Get_Attribute'

转载 作者:太空狗 更新时间:2023-10-29 20:47:12 26 4
gpt4 key购买 nike

我在 Python 中使用 Selenium webdriver (chrome),我试图从网页上的所有链接中获取 href。当我尝试以下操作时:

items = driver.find_elements_by_tag_name("a")
print items

for item in items:
href = item.Get_Attribute('href')
print href

它设法获取了所有链接,但在 get_attribute 上出现错误:

'WebElement' object has no attribute 'Get_Attribute'

虽然我到处都看到它似乎应该有效。

最佳答案

“Get_Attribute”属性不存在,但“get_attribute”属性存在:

items = driver.find_elements_by_tag_name("a")
print items

for item in items:
href = item.get_attribute('href')
print href

关于python - Selenium 'WebElement' 对象没有属性 'Get_Attribute',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36476861/

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