C# Class Aquality.Selenium.Browsers.BrowserNavigation

Wrapper over implementation of Selenium WebDriver navigation.
Inheritance: INavigation
ファイルを表示 Open project: aquality-automation/aquality-selenium-dotnet

Private Properties

Property Type Description
BrowserNavigation Aquality.Selenium.Core.Localization
InfoLocNavigate void

Public Methods

Method Description
Back ( ) : void

Navigates back.

Forward ( ) : void

Navigates forward.

GoToUrl ( Uri url ) : void

Navigates to desired url.

GoToUrl ( string url ) : void

Navigates to desired url.

Refresh ( ) : void

Refreshes current page.

Private Methods

Method Description
BrowserNavigation ( RemoteWebDriver driver ) : Aquality.Selenium.Core.Localization
InfoLocNavigate ( string url ) : void

Method Details

Back() public method

Navigates back.
public Back ( ) : void
return void

Forward() public method

Navigates forward.
public Forward ( ) : void
return void

GoToUrl() public method

Navigates to desired url.
public GoToUrl ( Uri url ) : void
url Uri Uri representation of URL.
return void

GoToUrl() public method

Navigates to desired url.
public GoToUrl ( string url ) : void
url string String representation of URL.
return void

Refresh() public method

Refreshes current page.
public Refresh ( ) : void
return void