WebDriverWaitForScript Method |
Waits for a piece of JavaScript to return true or not null.
Namespace: SeleniumAssembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
SyntaxDim 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:
ObjectValue not null
See Also