我现在是selenium web驱动程序的新手,我在获取元素的类名时遇到了问题 元素的html看起来像
<input id="filter-colour-0237739001"><div class="detailbox detailbox-pattern unavailable-colour"><span></span><img src="//lp2.hm.com/hmprod?set=source[/fabric/2014/9B57A69A-FD8D-4D79-9E92-8F5448566C51.jpg],type[FABRICSWATCH]&hmver=0&call=url[file:/product/main]" alt="" title="">
所以我想通过使用selenium web驱动程序提取class =“detailbox detailbox-pattern unavailable-color”的类名。 我通过以下代码获得了元素
WebElement ele=driver.findElement(By.id("filter-colour-0237739001"));
现在我想上课,所以请你帮我解决这个问题,我也可以使用java脚本
答案 0 :(得分:2)
只需使用getAttribute()
WebElement ele=driver.findElement(By.xpath("//*[@id='filter-colour-0237739001']/../div"));
ele.getAttribute("class")
编辑我想你想要div
的类,所以你应该使用指向div的选择器,例如//*[@id='filter-colour-0237739001']/../div
作为xpath