gpt4 book ai didi

python - Selenium + Python : Cannot get href

转载 作者:行者123 更新时间:2023-11-28 22:17:05 25 4
gpt4 key购买 nike

我是汽车测试的新手,遇到了问题。

在 Debug模式下无法获取href,尝试在google.com上查看,我的代码:

browser.get("https://google.com/")

def beta_check_href(self):

elem = self.find_elements_by_xpath("//a[@href]")
for el in elem:
print elem.get_attribute("href")

我做错了什么?谢谢!

最佳答案

你需要更换

for el in elem:
print elem.get_attribute("href")

for el in elem:
print el.get_attribute("href")

请注意,elem 是 WebElement 的列表,而 el 是来自 elem 的单个 WebElement 列表

关于python - Selenium + Python : Cannot get href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51647573/

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