<div class="value test" /> 我想识别该网络元素。它仅定义了这两个类。我不能执行以下操作,因为className不使用空格分隔的值。什么是替代品?
<div class="value test" />
className
@FindBy(className = "value test") @CacheLookup private WebElement test;
我认为巴拉克·马诺斯的答案不能完全解释这一点。
想象一下,我们只有以下几个元素:
<div class="value test"></div>
<div class="value test "></div>
<div class="first value test last"></div>
<div class="test value"></div>
XPath如何匹配
只匹配1个(完全匹配),巴拉克的答案
driver.findElement(By.xpath("//div[@class='value test']"));
比赛1,比赛2和比赛3(比赛类别包含value test,课程顺序很重要)
value test
driver.findElement(By.xpath("//div[contains(@class, 'value test')]"));
匹配1、2、3和4(只要元素具有class value和test)
value
test
driver.findElement(By.xpath("//div[contains(@class, 'value') and contains(@class, 'test')]"));
同样,在这种情况下,Css Selector始终支持XPath(快速,简洁,本机)。
比赛1
driver.findElement(By.cssSelector("div[class='value test']"));
比赛1、2和3
driver.findElement(By.cssSelector("div[class*='value test']"));
匹配1、2、3和4
driver.findElement(By.cssSelector("div.value.test"));