(self, selector: str)
| 51 | mode: Literal["local", "external_direct", "external_host"] |
| 52 | |
| 53 | def locator(self, selector: str) -> Locator: |
| 54 | return self.dom.locator(selector) |
| 55 | |
| 56 | def get_by_test_id(self, test_id: str) -> Locator: |
| 57 | return self.dom.get_by_test_id(test_id) |
no outgoing calls