HTML Code我的要求是我需要验证大小列表中存在的元素的border-bottom-color条件是当我们将鼠标悬停到列表中的任何特定大小时,底部颜色变为蓝色,当我们点击任何元素颜色变为黑色。
我尝试使用以下代码:
public void verifyBorderColour() {
click(sizeDropDownSelector);
List<WebElement> elements = findElements(allSizeElements);
for (WebElement e : elements) {
click(e);
String rgbvalue = e.getCssValue("border-bottom-color");
System.out.println("$$$$$$$$$$$$$$rgbvalue$$$$$$$$$$$$$"+rgbvalue);
}
}