(self, title: str, ordinal: int = 0)
| 178 | await self.page.click("text='Source'") |
| 179 | |
| 180 | async def expand_action(self, title: str, ordinal: int = 0) -> None: |
| 181 | await self.actions_tree.locator(".tree-view-entry", has_text=title).nth( |
| 182 | ordinal |
| 183 | ).locator(".codicon-chevron-right").click() |
| 184 | |
| 185 | |
| 186 | @pytest.fixture |
no test coverage detected