Skip to content

Instantly share code, notes, and snippets.

@ultimate-qa2
Last active February 26, 2021 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultimate-qa2/83d4bb2c09a1edbce78aee1f8814e4ec to your computer and use it in GitHub Desktop.
Save ultimate-qa2/83d4bb2c09a1edbce78aee1f8814e4ec to your computer and use it in GitHub Desktop.
Performing advanced keyboard actions with Selenium WebDriver in Java
WebElement element = driver.findElement(By.id("sign-in"));
Actions action = new Actions(driver);
action.click(Element).build().perform();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment