Class Click
java.lang.Object
net.serenitybdd.screenplay.playwright.interactions.Click
- All Implemented Interfaces:
SkipNested,Performable
public class Click extends java.lang.Object implements Performable
This method clicks an element matching selector by performing the following steps:
Find an element match matching selector. If there is none, wait until a matching element is attached to the DOM.
Wait for actionability checks on the matched element, unless force option is set. If the element is detached during the checks, the whole action is retried.
Scroll the element into view if needed.
Use Page.mouse() to click in the center of the element, or the specified position.
Wait for initiated navigations to either succeed or fail, unless noWaitAfter option is set.
When all steps combined have not finished during the specified timeout, this method rejects with a TimeoutError. Passing zero timeout disables this.
Sample usage:
Click.on("#searchbutton");
-
Constructor Summary
-
Method Summary
Modifier and Type Method Description static Clickon(java.lang.String selector)static Clickon(Target target)<T extends Actor>
voidperformAs(T actor)PerformablewithOptions(com.microsoft.playwright.Page.ClickOptions options)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.serenitybdd.screenplay.Performable
then
-
Constructor Details
-
Click
public Click()Default constructor required by Screenplay -
Click
-
-
Method Details
-
on
-
on
-
withOptions
-
performAs
- Specified by:
performAsin interfacePerformable
-