(
locator_code: list[ParsedPlaywrightCode], page: APage
)
| 1240 | |
| 1241 | |
| 1242 | async def aexecute_playwright_check( |
| 1243 | locator_code: list[ParsedPlaywrightCode], page: APage |
| 1244 | ) -> None: |
| 1245 | locator = await alocate(locator_code, page) |
| 1246 | # perform the action |
| 1247 | await locator.check() |
| 1248 | |
| 1249 | |
| 1250 | def execute_action( |
no test coverage detected