Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created February 5, 2017 13:05
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/46c79d3c0edd7d65bb81eceeadd99b81 to your computer and use it in GitHub Desktop.
Save angelovstanton/46c79d3c0edd7d65bb81eceeadd99b81 to your computer and use it in GitHub Desktop.
// Navigate to a page
this.driver.Navigate().GoToUrl(@"http://google.com");
// Get the title of the page
string title = this.driver.Title;
// Get the current URL
string url = this.driver.Url;
// Get the current page HTML source
string html = this.driver.PageSource;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment