C# Class OpenQA.Selenium.Interactions.CompositeAction

Defines an action that consists of a list of other actions to be performed in the browser.
Inheritance: IAction
ファイルを表示 Open project: asynchrony/Selenium2 Class Usage Examples

Public Methods

Method Description
AddAction ( IAction action ) : CompositeAction

Adds an action to the list of actions to be performed.

Perform ( ) : void

Performs the actions defined in this list of actions.

Method Details

AddAction() public method

Adds an action to the list of actions to be performed.
public AddAction ( IAction action ) : CompositeAction
action IAction An to be appended to the /// list of actions to be performed.
return CompositeAction

Perform() public method

Performs the actions defined in this list of actions.
public Perform ( ) : void
return void