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

Function aexecute_playwright_click

webarena/browser_env/actions.py:1156–1165  ·  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

1154
1155
1156async def aexecute_playwright_click(
1157 locator_code: list[ParsedPlaywrightCode],
1158 page: APage,
1159 pw_action_args: list[str] = [],
1160 pw_action_kwargs: dict[str, Any] = {},
1161) -> None:
1162 locator = await alocate(locator_code, page)
1163
1164 # perform the action
1165 await locator.click(*pw_action_args, **pw_action_kwargs)
1166
1167
1168def execute_playwright_hover(

Callers 1

aexecute_actionFunction · 0.85

Calls 1

alocateFunction · 0.85

Tested by

no test coverage detected