WebDriverWaitForScript Method
Waits for a piece of JavaScript to return true or not null.

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As WebDriver
Dim script As String
Dim arguments As Object
Dim timeout As Integer
Dim returnValue As Object

returnValue = instance.WaitForScript(script, 
	arguments, timeout)

Parameters

script
Type: SystemString
Piece of JavaScript code to execute.
arguments
Type: SystemObject
Optional arguments for the script.
timeout (Optional)
Type: SystemInt32
Optional timeout in milliseconds.

Return Value

Type: Object
Value not null
See Also