(self, selector: str)
| 312 | return self.locator(get_by_title_selector(text, exact=exact)) |
| 313 | |
| 314 | def frame_locator(self, selector: str) -> "FrameLocator": |
| 315 | return FrameLocator(self._frame, self._selector + " >> " + selector) |
| 316 | |
| 317 | async def element_handle( |
| 318 | self, |
nothing calls this directly
no test coverage detected