(
locator_code: list[ParsedPlaywrightCode],
page: Page,
pw_action_args: list[str] = [],
pw_action_kwargs: dict[str, Any] = {},
)
| 1210 | |
| 1211 | |
| 1212 | def execute_playwright_select_option( |
| 1213 | locator_code: list[ParsedPlaywrightCode], |
| 1214 | page: Page, |
| 1215 | pw_action_args: list[str] = [], |
| 1216 | pw_action_kwargs: dict[str, Any] = {}, |
| 1217 | ) -> None: |
| 1218 | locator = locate(locator_code, page) |
| 1219 | # perform the action |
| 1220 | locator.select_option(*pw_action_args, **pw_action_kwargs) |
| 1221 | |
| 1222 | |
| 1223 | async def aexecute_playwright_select_option( |
no test coverage detected