C# Class OpenQA.Selenium.Chrome.ChromeDriver.ChromeNavigation

Provides a way to navigate
Inheritance: INavigation
ファイルを表示 Open project: epall/selenium

Public Methods

Method Description
Back ( ) : void

Make the browser go back

ChromeNavigation ( ChromeDriver instance ) : System

Initializes a new instance of the ChromeNavigation class

Execute ( DriverCommand command ) : ChromeResponse

Execute commands on the browser

Forward ( ) : void

Make the browser go forward

GoToUrl ( Uri url ) : void

Navigate to the URL

GoToUrl ( string url ) : void

Navigate to the URL

Refresh ( ) : void

Refresh the Browser

Method Details

Back() public method

Make the browser go back
public Back ( ) : void
return void

ChromeNavigation() public method

Initializes a new instance of the ChromeNavigation class
public ChromeNavigation ( ChromeDriver instance ) : System
instance ChromeDriver Driver currently in use
return System

Execute() public method

Execute commands on the browser
public Execute ( DriverCommand command ) : ChromeResponse
command OpenQA.Selenium.Remote.DriverCommand Command to be executed
return ChromeResponse

Forward() public method

Make the browser go forward
public Forward ( ) : void
return void

GoToUrl() public method

Navigate to the URL
public GoToUrl ( Uri url ) : void
url System.Uri Server under test URL
return void

GoToUrl() public method

Navigate to the URL
public GoToUrl ( string url ) : void
url string Server under test URL
return void

Refresh() public method

Refresh the Browser
public Refresh ( ) : void
return void