(self, title: str, ordinal: int = 0)
| 166 | self.page.click("text='Source'") |
| 167 | |
| 168 | def expand_action(self, title: str, ordinal: int = 0) -> None: |
| 169 | self.actions_tree.locator(".tree-view-entry", has_text=title).nth( |
| 170 | ordinal |
| 171 | ).locator(".codicon-chevron-right").click() |
| 172 | |
| 173 | |
| 174 | @pytest.fixture |
no test coverage detected