(
locator_code: list[ParsedPlaywrightCode], page: APage
)
| 1175 | |
| 1176 | |
| 1177 | async def aexecute_playwright_hover( |
| 1178 | locator_code: list[ParsedPlaywrightCode], page: APage |
| 1179 | ) -> None: |
| 1180 | locator = await alocate(locator_code, page) |
| 1181 | |
| 1182 | # perform the action |
| 1183 | await locator.hover() |
| 1184 | |
| 1185 | |
| 1186 | def execute_playwright_type( |
no test coverage detected