Uses of Class
com.microsoft.playwright.ElementHandle.DblclickOptions
-
Packages that use ElementHandle.DblclickOptions Package Description com.microsoft.playwright -
-
Uses of ElementHandle.DblclickOptions in com.microsoft.playwright
Methods in com.microsoft.playwright that return ElementHandle.DblclickOptions Modifier and Type Method Description ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setButton(MouseButton button)Defaults toleft.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setDelay(double delay)Time to wait betweenmousedownandmouseupin milliseconds.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setForce(boolean force)Whether to bypass the actionability checks.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setModifiers(List<KeyboardModifier> modifiers)Modifier keys to press.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setNoWaitAfter(boolean noWaitAfter)Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setPosition(double x, double y)A point to use relative to the top-left corner of element padding box.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setPosition(Position position)A point to use relative to the top-left corner of element padding box.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setTimeout(double timeout)Maximum time in milliseconds.ElementHandle.DblclickOptionsElementHandle.DblclickOptions. setTrial(boolean trial)When set, this method only performs the actionability checks and skips the action.Methods in com.microsoft.playwright with parameters of type ElementHandle.DblclickOptions Modifier and Type Method Description voidElementHandle. dblclick(ElementHandle.DblclickOptions options)This method double clicks the element by performing the following steps: Wait for actionability checks on the element, unlessforceoption is set. Scroll the element into view if needed. UsePage.mouse()to double click in the center of the element, or the specifiedposition. Wait for initiated navigations to either succeed or fail, unlessnoWaitAfteroption is set.
-