gpt4 book ai didi

Python 和 Selenium - 如何找到页面上的所有元素 ID?

转载 作者:太空狗 更新时间:2023-10-29 17:52:38 26 4
gpt4 key购买 nike

我知道我可以使用如下方法:

find_elements_by_tag_name()
find_elements_by_id()
find_elements_by_css_selector()
find_elements_by_xpath()

但我想做的只是获取页面中存在的所有元素 ID 的列表,也许还有它们出现的标签类型。

我怎样才能做到这一点?

最佳答案

from selenium import webdriver

driver = webdriver.Firefox()
driver.get('http://google.com')

ids = driver.find_elements_by_xpath('//*[@id]')
for ii in ids:
#print ii.tag_name
print ii.get_attribute('id') # id name as string

关于Python 和 Selenium - 如何找到页面上的所有元素 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20244691/

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