(
locator_code: list[ParsedPlaywrightCode],
page: Page,
pw_action_args: list[str] = [],
pw_action_kwargs: dict[str, Any] = {},
)
| 1142 | |
| 1143 | |
| 1144 | def execute_playwright_click( |
| 1145 | locator_code: list[ParsedPlaywrightCode], |
| 1146 | page: Page, |
| 1147 | pw_action_args: list[str] = [], |
| 1148 | pw_action_kwargs: dict[str, Any] = {}, |
| 1149 | ) -> None: |
| 1150 | locator = locate(locator_code, page) |
| 1151 | |
| 1152 | # perform the action |
| 1153 | locator.click(*pw_action_args, **pw_action_kwargs) |
| 1154 | |
| 1155 | |
| 1156 | async def aexecute_playwright_click( |
no test coverage detected