gpt4 book ai didi

java - 获取给定 HTML 元素 id 的 HTML 属性列表

转载 作者:行者123 更新时间:2023-11-30 06:09:10 24 4
gpt4 key购买 nike

我对 XPath 并没有真正的经验,我需要实现以下目标:

假设我得到了 html 标签 id,并且我需要接收具有给定 id 的 html 元素的每个属性(id 除外),例如:

作为输入,我得到 id="test",

作为输出,我需要得到类似的东西:

"Key" = "some-randmom-attribute"= 
"Value"="value-of-random-attribute";

"Key" = "some-randmom-attribute2"=
"Value"="value-of-random-attribute2";

我需要的是:

允许获取具有给定 id 的 html 标签的所有属性的查询,

干杯

最佳答案

假设您使用带有 Selenium Xpath 选择器的 Java:

WebElement target = driver.findElement(By.xpath("//*[@id='someID']"));

然后按照此处创建的解决方案进行操作:

Selenium webdriver get all the data attributes of an element

关于java - 获取给定 HTML 元素 id 的 HTML 属性列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50633756/

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