类的xpath测试元素

时间:2012-12-10 15:09:10

标签: xpath

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

1 个答案:

答案 0 :(得分:3)

要使用的xpath是

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