Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created June 19, 2016 13:39
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/74975e4c83200fb0490f9df24a45b1b7 to your computer and use it in GitHub Desktop.
Save angelovstanton/74975e4c83200fb0490f9df24a45b1b7 to your computer and use it in GitHub Desktop.
public interface INavigationService
{
event EventHandler<PageEventArgs> Navigated;
string Url { get; }
string Title { get; }
void Navigate(string relativeUrl, string currentLocation, bool sslEnabled = false);
void NavigateByAbsoluteUrl(string absoluteUrl, bool useDecodedUrl = true);
void Navigate(string currentLocation, bool sslEnabled = false);
void WaitForUrl(string url);
void WaitForPartialUrl(string url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment