C# Class OpenQA.Selenium.Remote.RemoteWebDriver.RemoteNavigation

Provides a mechanism for Navigating with the driver.
Inheritance: INavigation
Afficher le fichier Open project: epall/selenium

Méthodes publiques

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

Refresh ( ) : void

Refresh the browser

RemoteNavigation ( RemoteWebDriver driver ) : System

Initializes a new instance of the RemoteNavigation class

Method Details

Back() public méthode

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

Forward() public méthode

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

GoToUrl() public méthode

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
Résultat void

GoToUrl() public méthode

Navigate to a url for your test
public GoToUrl ( string url ) : void
url string String of where you want the browser to go to
Résultat void

Refresh() public méthode

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

RemoteNavigation() public méthode

Initializes a new instance of the RemoteNavigation class
public RemoteNavigation ( RemoteWebDriver driver ) : System
driver RemoteWebDriver Driver in use
Résultat System