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

Method get

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

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:

Callers

nothing calls this directly

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected