Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created June 4, 2017 19:54
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 angelovstanton/95e1e77423dd4e544bcf69a949075f47 to your computer and use it in GitHub Desktop.
Save angelovstanton/95e1e77423dd4e544bcf69a949075f47 to your computer and use it in GitHub Desktop.
_driver.FindElement(By.Id("userName"));
_driver.FindElement(By.ClassName("panel other"));
_driver.FindElement(By.CssSelector("#userName"));
_driver.FindElement(By.LinkText("Automate The Planet"));
_driver.FindElement(By.Name("webDriverCheatSheet"));
_driver.FindElement(By.PartialLinkText("Automate"));
_driver.FindElement(By.TagName("a"));
_driver.FindElement(By.XPath("//*[@id='panel']/div/h1"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment