Table of Contents

Interface IActionExecutor

Namespace
OpenQA.Selenium
Assembly
WebDriver.dll

Interface allowing execution of W3C Specification-compliant actions.

public interface IActionExecutor

Properties

IsActionExecutor

Gets a value indicating whether this object is a valid action executor.

bool IsActionExecutor { get; }

Property Value

bool

Methods

PerformActions(IList<ActionSequence>)

Performs the specified list of actions with this action executor.

void PerformActions(IList<ActionSequence> actionSequenceList)

Parameters

actionSequenceList IList<ActionSequence>

The list of action sequences to perform.

Exceptions

ArgumentNullException

If actionSequenceList is null.

ArgumentException

If an element in actionSequenceList is null.

ResetInputState()

Resets the input state of the action executor.

void ResetInputState()