gpt4 book ai didi

javascript - 如何在 selenium javascript 中遍历具有特定类名的元素

转载 作者:行者123 更新时间:2023-12-04 07:50:16 24 4
gpt4 key购买 nike

页面上有动态数量的 div 容器,类名为“sponge”,我需要遍历这些容器,然后从每个容器中获取详细信息,但我不知道如何执行此操作。这是我迄今为止尝试过的...

const containers = await driver.findElements(By.className(`sponge`))

for(let t = 0; t < containers.length; t++){
let runner = await containers[t].findElement(By.xpath(`//div[2]/div[1]/div/p`)).getText()
console.log(runner)
}
当我这样做时,我只是在第一个“海绵”类容器中获得“运行者”x 次,x 是“容器”的长度。它实际上并没有找到我想要的容器中的“运行者”

最佳答案

立即获取 child nodeparent node您需要使用 .现在试试。

const containers = await driver.findElements(By.className("sponge"))

for(let t = 0; t < containers.length; t++){
let runner = await containers[t].findElement(By.xpath(".//div[2]/div[1]/div/p")).getText()
console.log(runner)
}

关于javascript - 如何在 selenium javascript 中遍历具有特定类名的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67022637/

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