MCPcopy Create free account
hub / github.com/THUDM/AutoWebGLM / execute_playwright_select_option

Function execute_playwright_select_option

webarena/browser_env/actions.py:1212–1220  ·  view source on GitHub ↗
(
    locator_code: list[ParsedPlaywrightCode],
    page: Page,
    pw_action_args: list[str] = [],
    pw_action_kwargs: dict[str, Any] = {},
)

Source from the content-addressed store, hash-verified

1210
1211
1212def 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
1223async def aexecute_playwright_select_option(

Callers 1

execute_actionFunction · 0.85

Calls 1

locateFunction · 0.85

Tested by

no test coverage detected