WebDriverSend Method
Sends a customized command

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As WebDriver
Dim method As String
Dim relativeUri As String
Dim param1 As String
Dim value1 As Object
Dim param2 As String
Dim value2 As Object
Dim param3 As String
Dim value3 As Object
Dim param4 As String
Dim value4 As Object
Dim returnValue As Object

returnValue = instance.Send(method, relativeUri, 
	param1, value1, param2, value2, param3, 
	value3, param4, value4)

Parameters

method
Type: SystemString
POST, GET or DELETE
relativeUri
Type: SystemString
Relative URI. Ex: "/screenshot"
param1 (Optional)
Type: SystemString
Optional
value1 (Optional)
Type: SystemObject

[Missing <param name="value1"/> documentation for "M:Selenium.WebDriver.Send(System.String,System.String,System.String,System.Object,System.String,System.Object,System.String,System.Object,System.String,System.Object)"]

param2 (Optional)
Type: SystemString
Optional
value2 (Optional)
Type: SystemObject

[Missing <param name="value2"/> documentation for "M:Selenium.WebDriver.Send(System.String,System.String,System.String,System.Object,System.String,System.Object,System.String,System.Object,System.String,System.Object)"]

param3 (Optional)
Type: SystemString
Optional
value3 (Optional)
Type: SystemObject

[Missing <param name="value3"/> documentation for "M:Selenium.WebDriver.Send(System.String,System.String,System.String,System.Object,System.String,System.Object,System.String,System.Object,System.String,System.Object)"]

param4 (Optional)
Type: SystemString
Optional
value4 (Optional)
Type: SystemObject

[Missing <param name="value4"/> documentation for "M:Selenium.WebDriver.Send(System.String,System.String,System.String,System.Object,System.String,System.Object,System.String,System.Object,System.String,System.Object)"]

Return Value

Type: Object
Result
Examples
Set links = driver.Send("POST", "/elements", "using", "css selector", "value", "a")
See Also