(self, index: int)
| 337 | return Locator(self._frame, f"{self._selector} >> nth=-1") |
| 338 | |
| 339 | def nth(self, index: int) -> "Locator": |
| 340 | return Locator(self._frame, f"{self._selector} >> nth={index}") |
| 341 | |
| 342 | @property |
| 343 | def content_frame(self) -> "FrameLocator": |