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

Function aexecute_playwright_select_option

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

Source from the content-addressed store, hash-verified

1221
1222
1223async 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
1234def execute_playwright_check(

Callers 1

aexecute_actionFunction · 0.85

Calls 1

alocateFunction · 0.85

Tested by

no test coverage detected