WebDriverStartRemotely Method |
Starts remotely a new Selenium testing session
Namespace: SeleniumAssembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
SyntaxDim instance As WebDriver
Dim executorUri As String
Dim browser As String
Dim version As String
Dim platform As String
instance.StartRemotely(executorUri, browser,
version, platform)
Parameters
- executorUri
- Type: SystemString
Remote executor address (ex : "http://localhost:4444/wd/hub") - browser (Optional)
- Type: SystemString
Name of the browser : firefox, ie, chrome, phantomjs, htmlunit, htmlunitwithjavascript, android, ipad, opera - version (Optional)
- Type: SystemString
Browser version - platform (Optional)
- Type: SystemString
Platform: WINDOWS, LINUX, MAC, ANDROID...
ExamplesDim driver As New WebDriver()
driver.StartRemotely "http://localhost:4444/wd/hub", "ie", 11
driver.Get "/"
See Also