(
locator_code: list[ParsedPlaywrightCode],
page: APage,
pw_action_args: list[str] = [],
pw_action_kwargs: dict[str, Any] = {},
)
| 1221 | |
| 1222 | |
| 1223 | async def aexecute_playwright_select_option( |
| 1224 | locator_code: list[ParsedPlaywrightCode], |
| 1225 | page: APage, |
| 1226 | pw_action_args: list[str] = [], |
| 1227 | pw_action_kwargs: dict[str, Any] = {}, |
| 1228 | ) -> None: |
| 1229 | locator = await alocate(locator_code, page) |
| 1230 | # perform the action |
| 1231 | await locator.select_option(*pw_action_args, **pw_action_kwargs) |
| 1232 | |
| 1233 | |
| 1234 | def execute_playwright_check( |
no test coverage detected