我正在尝试断言背景颜色这是HTML模板
<td style="font:12px arial,sans-serif;background-color: #959595; color:white;"></td>
我想要背景值,我试试这个
String headerCalled = driver.findElement(By.xpath("//td[text()='cheap3436@mailinator.com']/following-sibling::td[1]")).getCssValue("background-color").toString();
System.out.println(headerCalled);
assertEquals(headerCalled,"rgb(255,87,80,1)");
它让我'透明',因为输出,。
我哪里出错了。
答案 0 :(得分:0)
将其指定为重要
.td {background-color:#959595!important;}