Skip to content

Instantly share code, notes, and snippets.

@santhoshv339
Created November 21, 2016 13:30
Show Gist options
  • Save santhoshv339/40f3f7a4f1bef70fc5f6caf4149c67cb to your computer and use it in GitHub Desktop.
Save santhoshv339/40f3f7a4f1bef70fc5f6caf4149c67cb to your computer and use it in GitHub Desktop.
Some Snippets from Actions Class
public static void goToEndOfPage(WebDriver driver)
{
Actions actions = new Actions(driver);
actions.keyDown(Keys.CONTROL).sendKeys(Keys.END).perform();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment