Interface ClickInteraction
- All Superinterfaces:
Performable,SkipNested
- All Known Implementing Classes:
CheckCheckboxOfElement,CheckCheckboxOfTarget,ClickOnBy,ClickOnElement,ClickOnTarget
public interface ClickInteraction extends Performable
-
Method Summary
Modifier and Type Method Description ClickInteractionafterWaitingUntilEnabled()Wait until the element is present and enabled before clickingClickInteractionafterWaitingUntilPresent()Wait until the element is present before clicking (default behaviour)ClickInteractionwithNoDelay()Click immediately, do not check whether the element is present first.Methods inherited from interface net.serenitybdd.screenplay.Performable
performAs, then
-
Method Details
-
afterWaitingUntilEnabled
ClickInteraction afterWaitingUntilEnabled()Wait until the element is present and enabled before clicking -
afterWaitingUntilPresent
ClickInteraction afterWaitingUntilPresent()Wait until the element is present before clicking (default behaviour) -
withNoDelay
ClickInteraction withNoDelay()Click immediately, do not check whether the element is present first.
-