(
locator_code: list[ParsedPlaywrightCode], page: Page
)
| 1232 | |
| 1233 | |
| 1234 | def execute_playwright_check( |
| 1235 | locator_code: list[ParsedPlaywrightCode], page: Page |
| 1236 | ) -> None: |
| 1237 | locator = locate(locator_code, page) |
| 1238 | # perform the action |
| 1239 | locator.check() |
| 1240 | |
| 1241 | |
| 1242 | async def aexecute_playwright_check( |
no test coverage detected