WebDriverGet Method
Loads a web page in the current browser session. Same as Open method.

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As WebDriver
Dim url As String
Dim timeout As Integer
Dim raise As Boolean
Dim returnValue As Boolean

returnValue = instance.Get(url, timeout, 
	raise)

Parameters

url
Type: SystemString
URL
timeout (Optional)
Type: SystemInt32
Optional timeout in milliseconds. Infinite=-1
raise (Optional)
Type: SystemBoolean
Optional - Raise an exception after the timeout when true

Return Value

Type: Boolean
Return true if the url was openned within the timeout, false otherwise
See Also