Row Methods

HoverOver

Hovers mouse pointer over the row to "activate" it, e.g. to show icons that are only shown on hover.

Syntax:

public virtual void HoverOver(
	Func<bool> verification
)

Parameters:

Parameter

Description

verification

Type: Func<Boolean> The verification method (e.g. HoverOver(element.WaitForAppear); or HoverOver(() => element.WaitForStatus(true));)

Exceptions:

Exception

Condition

When the HoverOver could not be verified successfully after the configured amount of retries of the interaction.

SelectRow

Selects the row by clicking in the row at the position of the element that was used to find the row.

Syntax:

public virtual void SelectRow(
	Func<bool> verification
)

Parameters:

Parameter

Description

verification

Type: Func<Boolean> The verification method (e.g. SelectRow(element.WaitForAppear); or SelectRow(() => element.WaitForStatus(true));)

Exceptions:

Exception

Condition

When the Select could not be verified successfully after the configured amount of retries of the interaction.

Last updated