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

Provides a way to navigate
Inheritance: INavigation
Afficher le fichier Open project: epall/selenium

Méthodes publiques

Méthode 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 méthode

Make the browser go back
public Back ( ) : void
Résultat void

ChromeNavigation() public méthode

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

Execute() public méthode

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

Forward() public méthode

Make the browser go forward
public Forward ( ) : void
Résultat void

GoToUrl() public méthode

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

GoToUrl() public méthode

Navigate to the URL
public GoToUrl ( string url ) : void
url string Server under test URL
Résultat void

Refresh() public méthode

Refresh the Browser
public Refresh ( ) : void
Résultat void