我需要在变量中保存一个类名,以便稍后可以断言.html代码是:
<span class="act-btn-top-blick low stop-work">Спри</span>
我需要保存变量“act-btn-top-blick low stop-work”。
要找到我正在使用XPath的元素:
driver.findElement(By.xpath(".//*[@id='workingBox']/a/span"));
干杯!
答案 0 :(得分:0)
您可以使用getAttribute
方法。
String variable1 = driver.findElement(By.xpath(".//*[@id='workingBox']/a/span")).getAttribute("class");