Skip to content

Commit

Permalink
Updated smoketests
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Jan 13, 2016
1 parent 2b2d49d commit e2ea2ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 43 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,13 @@ public <T extends WebElementFacade> T moveTo(String xpathOrCssSelector) {
return findBy(xpathOrCssSelector);
}

public <T extends WebElementFacade> T moveTo(By locator) {
if (!driverIsDisabled()) {
withAction().moveToElement(find(locator)).perform();
}
return find(locator);
}

public void waitForAngularRequestsToFinish() {
if ((boolean) getJavascriptExecutorFacade().executeScript(
"return (typeof angular !== 'undefined')? true : false;")) {
Expand Down

This file was deleted.

0 comments on commit e2ea2ea

Please sign in to comment.