WebElementExecuteAsyncScript Method
Execute an asynchronous piece of JavaScript in the context of the current element

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

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

Parameters

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

Return Value

Type: Object
The first argument of the callback function.
Examples
VB
href = ele.ExecuteAsyncScript("callback(this.href);");"
See Also