WebDriverStart Method
Starts a new Selenium testing session

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As WebDriver
Dim browser As String
Dim baseUrl As String

instance.Start(browser, baseUrl)

Parameters

browser (Optional)
Type: SystemString
Name of the browser : firefox, ie, chrome, phantomjs
baseUrl (Optional)
Type: SystemString
The base URL
Examples
Dim driver As New WebDriver()
driver.Start "firefox", "http://www.google.com"
driver.Get "/"
See Also