gpt4 book ai didi

python - Selenium/Python 类型错误 : 'WebElement' object is not iterable

转载 作者:行者123 更新时间:2023-12-04 14:48:00 26 4
gpt4 key购买 nike

我正在尝试从以下 HTML 打印和/或写入 span 标签内的文件文本。只希望它 find_element 一次,而不是 find_elements 因为只有一个实例:

<div>
<span class="test">2</span>
</div>

下面是我正在使用的 python 代码,它生成“'WebElement' object is not iterable”错误。

test = driver.find_element_by_xpath("/html/body/div")

for numberText in test:
numberTexts = numberText.find_element_by_class_name("test")

print(numberTexts.txt)

最佳答案

您通过以下方式获得单个元素(第一个):

driver.find_element_by_xpath("/html/body/div")

这显然是不可迭代的。

对于多个元素,即获得一个可迭代的,使用:

driver.find_elements_by_xpath("/html/body/div")

注意元素之后的s

还可以查看 documentation .

关于python - Selenium/Python 类型错误 : 'WebElement' object is not iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55080493/

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