问题描述
WebElement signUpButton = driver.findElement(By.cssSelector(BackgroundColorConstants.SING_UP_BUTTON_LOCATOR));
System.out.println("悬停前" + signUpButton.getCssValue("background-color"));
Actions action = new Actions(driver);
action.movetoElement(signUpButton).perform();
System.out.println("悬停后" + signUpButton.getCssValue("background-color"));
但是每次背景颜色的值都不一样。
我在跑步过程中没有触摸鼠标。
在 selenium 中悬停后如何获得正确的背景颜色值?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)