MCPcopy Create free account
hub / github.com/comunes/kune / moveMouseTo

Method moveMouseTo

src/test/java/cc/kune/selenium/SeleniumUtils.java:163–168  ·  view source on GitHub ↗

Move mouse to. @param webdriver the webdriver @param element the element

(final WebDriver webdriver, final WebElement element)

Source from the content-addressed store, hash-verified

161 * the element
162 */
163 public static void moveMouseTo(final WebDriver webdriver, final WebElement element) {
164 SeleniumUtils.showCursor(webdriver, element);
165 final Actions builder = new Actions(webdriver);
166 final Action action = builder.moveToElement(element).build();
167 action.perform();
168 }
169
170 /**
171 * Move mouse to.

Callers 2

doubleClickMethod · 0.95
showTooltipMethod · 0.95

Calls 2

showCursorMethod · 0.95
buildMethod · 0.45

Tested by

no test coverage detected