mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
docs: locator handler type should be Runnable in java (#29503)
This commit is contained in:
parent
93a2c00a1d
commit
edc1c13f31
@ -3332,11 +3332,18 @@ await page.GetByRole("button", new() { Name = "Start here" }).ClickAsync();
|
|||||||
Locator that triggers the handler.
|
Locator that triggers the handler.
|
||||||
|
|
||||||
### param: Page.addLocatorHandler.handler
|
### param: Page.addLocatorHandler.handler
|
||||||
|
* langs: js, python, csharp
|
||||||
* since: v1.42
|
* since: v1.42
|
||||||
- `handler` <[function]>
|
- `handler` <[function]>
|
||||||
|
|
||||||
Function that should be run once [`param: locator`] appears. This function should get rid of the element that blocks actions like click.
|
Function that should be run once [`param: locator`] appears. This function should get rid of the element that blocks actions like click.
|
||||||
|
|
||||||
|
### param: Page.addLocatorHandler.handler
|
||||||
|
* langs: java
|
||||||
|
* since: v1.42
|
||||||
|
- `handler` <[Runnable]>
|
||||||
|
|
||||||
|
Function that should be run once [`param: locator`] appears. This function should get rid of the element that blocks actions like click.
|
||||||
|
|
||||||
## async method: Page.reload
|
## async method: Page.reload
|
||||||
* since: v1.8
|
* since: v1.8
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user