C# Class OpenQA.Selenium.IE.InternetExplorerDriver.InternetExplorerNavigation

Provides a mechanism for Navigating with the driver.
Inheritance: INavigation
Mostrar archivo Open project: epall/selenium

Public Methods

Method Description
Back ( ) : void

Move the browser back.

Forward ( ) : void

Move the browser forward.

GoToUrl ( Uri url ) : void

Navigate to a url for your test.

GoToUrl ( string url ) : void

Navigate to a url for your test.

InternetExplorerNavigation ( InternetExplorerDriver driver ) : System

Initializes a new instance of the InternetExplorerNavigation class.

Refresh ( ) : void

Refresh the browser.

Method Details

Back() public method

Move the browser back.
public Back ( ) : void
return void

Forward() public method

Move the browser forward.
public Forward ( ) : void
return void

GoToUrl() public method

Navigate to a url for your test.
public GoToUrl ( Uri url ) : void
url System.Uri Uri object of where you want the browser to go to.
return void

GoToUrl() public method

Navigate to a url for your test.
public GoToUrl ( string url ) : void
url string string of the URL you want the browser to go to.
return void

InternetExplorerNavigation() public method

Initializes a new instance of the InternetExplorerNavigation class.
public InternetExplorerNavigation ( InternetExplorerDriver driver ) : System
driver InternetExplorerDriver Driver in use
return System

Refresh() public method

Refresh the browser.
public Refresh ( ) : void
return void