gpt4 book ai didi

python - find_element_by_xpath 不返回跨度类值

转载 作者:太空宇宙 更新时间:2023-11-03 14:23:13 25 4
gpt4 key购买 nike

enter image description here

嗨,

我正在尝试抓取范围 class = "ws-value" 的值(在源代码图片中以红色包围)。我尝试过:

test = driver.find_elements_by_xpath(".//span[@class='ws-value']")
print test

但我得到的只是一个空列表。

有人可以告诉我如何获取两个 ws 值吗?非常感谢!

最佳答案

使用.text方法和这个xpath

test = driver.find_element_by_xpath("//span[contains(@class,'test')]").text
print test

如果存在多个节点,您还必须使用 if else 条件

关于python - find_element_by_xpath 不返回跨度类值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47813386/

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