MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / get

Method get

py/selenium/webdriver/remote/webdriver.py:511–524  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

509 return {"success": 0, "value": None, "sessionId": self.session_id}
510
511 def get(self, url: str) -> None:
512 """Navigate the browser to the specified URL.
513
514 The method does not return until the page is fully loaded (i.e. the
515 onload event has fired) in the current window or tab.
516
517 Args:
518 url: The URL to be opened by the browser. Must include the protocol
519 (e.g., http://, https://).
520
521 Example:
522 `driver.get("https://example.com")`
523 """
524 self.execute(Command.GET, {"url": url})
525
526 @property
527 def title(self) -> str:

Callers

nothing calls this directly

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected