Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created June 19, 2016 13:45
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/af4b11a9c11c9c566eb2332661b5972b to your computer and use it in GitHub Desktop.
Save angelovstanton/af4b11a9c11c9c566eb2332661b5972b to your computer and use it in GitHub Desktop.
public interface IBrowser
{
BrowserSettings BrowserSettings { get; }
string SourceString { get; }
void SwitchToFrame(IFrame newContainer);
IFrame GetFrameByName(string frameName);
void SwitchToDefault();
void Quit();
void WaitForAjax();
void WaitUntilReady();
void FullWaitUntilReady();
void RefreshDomTree();
void ClickBackButton();
void ClickForwardButton();
void LaunchNewBrowser();
void MaximizeBrowserWindow();
void ClickRefresh();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment