gpt4 book ai didi

类的 xpath 测试元素

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

我想知道 xpath 是否有办法测试类的元素。我目前有 ID,我只想能够测试以确保 JS 添加一个类。

我正在测试 id=foo 是否包含 class=red 的元素。

<span id="foo" class="red">test</span>

我假设你会使用 xpathCount?
getXpathCount(("//a[@id='foo']") not sure what goes next).equals(1);

我也试过这个没有成功
getXpathCount("//span[@id='foo'].span[contains(@class,'red')]").equals(1);

最佳答案

要使用的 xpath 将是

//a[@id='foo' and @class='red']

关于类的 xpath 测试元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13803606/

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