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

Method get

py/selenium/webdriver/remote/webdriver.py:510–523  ·  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

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

Callers

nothing calls this directly

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected