gpt4 book ai didi

python - 在 python 中使用 selenium 循环遍历一组 webelements

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

我对编码很陌生。我们正在使用 selenium 工具在 python 中编写脚本。

我有以下用于单个网络元素的代码:

element = driver.find_element_by_css_selector("locator")
height = element.get_attribute('height')
print height

现在我的 xpath 表达式返回 8 个项目,我必须为这些项目打印“高度”属性。我如何在 Python 中执行此操作?

最佳答案

使用find_elements_by_css_selector() :

for element in driver.find_elements_by_css_selector("locator"):
height = element.get_attribute('height')
print height

或者,find_elements_by_xpath()如果你有一个 xpath 表达式。

关于python - 在 python 中使用 selenium 循环遍历一组 webelements,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23413267/

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