Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Last active February 15, 2016 07:07
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/236e977026e5b1f87387 to your computer and use it in GitHub Desktop.
Save angelovstanton/236e977026e5b1f87387 to your computer and use it in GitHub Desktop.
[TestMethod]
public void CheckIfElementIsVisible()
{
this.driver.Navigate().GoToUrl(@"http://automatetheplanet.com");
Assert.IsTrue(driver.FindElement(
By.XPath("//*[@id='tve_editor']/div[2]/div[2]/div/div")).Displayed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment