如何使用selenium webdriver将鼠标悬停在隐形按钮上?

时间:2015-11-06 11:18:23

标签: java selenium testing

我的网页上有一个隐藏按钮,当鼠标悬停在元素上时,该按钮变为可见。我要做的是

将鼠标悬停在元素上

当我运行selenium脚本时,它到达不可见元素时失败。如何找到隐形按钮以及如何悬停

1 个答案:

答案 0 :(得分:0)

Actions actions = new Actions(driver);
IWebElement menuHoverLink = driver.FindElement(By.Id(""));
actions.MoveToElement(menuHoverLink);
actions.Build().Perform();

你可以通过id / xpath / className找到你的按钮等等......