Navigate the browser to the specified URL. The method does not return until the page is fully loaded (i.e. the onload event has fired) in the current window or tab. Args: url: The URL to be opened by the browser. Must include the protocol (e.g.,
(self, url: str)
| 497 | return {"success": 0, "value": None, "sessionId": self.session_id} |
| 498 | |
| 499 | def get(self, url: str) -> None: |
| 500 | """Navigate the browser to the specified URL. |
| 501 | |
| 502 | The method does not return until the page is fully loaded (i.e. the |
| 503 | onload event has fired) in the current window or tab. |
| 504 | |
| 505 | Args: |
| 506 | url: The URL to be opened by the browser. Must include the protocol |
| 507 | (e.g., http://, https://). |
| 508 | |
| 509 | Example: |
| 510 | `driver.get("https://example.com")` |
| 511 | """ |
| 512 | self.execute(Command.GET, {"url": url}) |
| 513 | |
| 514 | @property |
| 515 | def title(self) -> str: |