(
locator_code: list[ParsedPlaywrightCode],
page: Page,
pw_action_args: list[str] = [],
pw_action_kwargs: dict[str, Any] = {},
)
| 1003 | |
| 1004 | @beartype |
| 1005 | def execute_playwright_click( |
| 1006 | locator_code: list[ParsedPlaywrightCode], |
| 1007 | page: Page, |
| 1008 | pw_action_args: list[str] = [], |
| 1009 | pw_action_kwargs: dict[str, Any] = {}, |
| 1010 | ) -> None: |
| 1011 | locator = locate(locator_code, page) |
| 1012 | |
| 1013 | # perform the action |
| 1014 | locator.click(*pw_action_args, **pw_action_kwargs) |
| 1015 | |
| 1016 | |
| 1017 | @beartype |
no test coverage detected