(
locator_code: list[ParsedPlaywrightCode], page: Page
)
| 1166 | |
| 1167 | |
| 1168 | def execute_playwright_hover( |
| 1169 | locator_code: list[ParsedPlaywrightCode], page: Page |
| 1170 | ) -> None: |
| 1171 | locator = locate(locator_code, page) |
| 1172 | |
| 1173 | # perform the action |
| 1174 | locator.hover() |
| 1175 | |
| 1176 | |
| 1177 | async def aexecute_playwright_hover( |
no test coverage detected