Actions Class

Definition

Provides Selenium 4-style Actions API for complex interaction sequences. Supports mouse, keyboard, touch, and pen input with parallel execution.

public class Actions

Examples

new Actions(driver)
    .MoveToElement(element)
    .Click()
    .KeyDown(Key.LeftShift)
    .SendKeys("HELLO")
    .KeyUp(Key.LeftShift)
    .Perform();
Tip: use kind:method, kind:property, kind:ctor. Press Esc to clear.

Constructors (1)

Methods (27)