(self)
| 1634 | return await self.evaluate("window.location.href") |
| 1635 | |
| 1636 | async def get_origin(self): |
| 1637 | return await self.evaluate("window.location.origin") |
| 1638 | |
| 1639 | async def send_keys(self, selector, text, timeout=5): |
| 1640 | element = await self.find(selector, timeout=timeout) |