获取HTML中的属性值

时间:2016-08-04 13:29:09

标签: html selenium xpath

enter image description here请帮助我。请参阅上图。

1 个答案:

答案 0 :(得分:2)

WebElement element = driver.findElement(By.id("mod-sellerRating-9"));
String dataSellerRating = element.getAttribute("data-sellerrating");

如上所述,我会使用By.id而不是By.xpath