class WebDriverCompositeAction implements WebDriverAction (View source)

An action for aggregating actions and triggering all of them afterwards.

Methods

addAction(WebDriverAction $action)

Add an WebDriverAction to the sequence.

int
getNumberOfActions()

Get the number of actions in the sequence.

void
perform()

Perform the seqeunce of actions.

Details

WebDriverCompositeAction addAction(WebDriverAction $action)

Add an WebDriverAction to the sequence.

Parameters

WebDriverAction $action

Return Value

WebDriverCompositeAction

The current instance.

int getNumberOfActions()

Get the number of actions in the sequence.

Return Value

int

The number of actions.

void perform()

Perform the seqeunce of actions.

Return Value

void