2

我想知道 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);
4

1 回答 1

3

The xpath to use would be

//a[@id='foo' and @class='red']
于 2012-12-10T15:23:35.053 回答