我需要在悬停时测试背景颜色的变化为#F67621。 将背景颜色代码与预定义的预期值进行比较。我使用XPath作为选择器。
String xPathStr="//input[@id='add']";
String str = driver.findElement(By.xpath(xPathStr)).getCssValue("background-color");
对于上面的代码,有人可以建议我如何检查按钮的悬停 上述代码的CSS如下:
# add:hover , #clear:hover{
background-color:#F67621;
}
答案 0 :(得分:2)
我不确定,但我发现了这个:
How to perform mouseover function in Selenium WebDriver using Java?
Actions action = new Actions(driver);
WebElement we = driver.findElement(By.id("Add"));
action.moveToElement(we).perform();
assertEquals("#F67621", we.getCssValue("background-color"));
其他链接:
http://www.learnseleniumtesting.com/mouse-hover-and-other-mouse-events-in-webdriver/
答案 1 :(得分:1)
WebElement mousehover=org.findElement(By.xpath("html/body/div[1]/div/div[1]/div/div/div[2]/div[1]/ul/li[3]/a"));
Actions action = new Actions(org);
action.moveToElement(mousehover).build().perform();