(
locator_code: list[ParsedPlaywrightCode],
page: APage,
pw_action_args: list[str] = [],
pw_action_kwargs: dict[str, Any] = {},
)
| 1154 | |
| 1155 | |
| 1156 | async def aexecute_playwright_click( |
| 1157 | locator_code: list[ParsedPlaywrightCode], |
| 1158 | page: APage, |
| 1159 | pw_action_args: list[str] = [], |
| 1160 | pw_action_kwargs: dict[str, Any] = {}, |
| 1161 | ) -> None: |
| 1162 | locator = await alocate(locator_code, page) |
| 1163 | |
| 1164 | # perform the action |
| 1165 | await locator.click(*pw_action_args, **pw_action_kwargs) |
| 1166 | |
| 1167 | |
| 1168 | def execute_playwright_hover( |
no test coverage detected