WebDriverActions Property
Get the actions class

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As WebDriver
Dim value As Actions

value = instance.Actions

Property Value

Type: Actions
Examples
WebDriver driver = New WebDriver()
driver.start "firefox", "http://www.google.com"
driver.get "/"
driver.Actions.keyDown(Keys.Control).sendKeys("a").perform
See Also