如何识别selenium webdriver

时间:2017-10-27 13:23:20

标签: html css selenium selenium-webdriver

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);

        }
    }

Size Pallete with CSS RGB Value

0 个答案:

没有答案