diff --git a/py/selenium/webdriver/edge/webdriver.py b/py/selenium/webdriver/edge/webdriver.py index 1d0410a79ae44..7dba5b4c59ec8 100644 --- a/py/selenium/webdriver/edge/webdriver.py +++ b/py/selenium/webdriver/edge/webdriver.py @@ -23,7 +23,7 @@ class WebDriver(ChromiumDriver): - """Controls the MDEdgeDriver and allows you to drive the browser.""" + """Controls the MSEdgeDriver and allows you to drive the browser.""" def __init__( self, diff --git a/py/selenium/webdriver/remote/webdriver.py b/py/selenium/webdriver/remote/webdriver.py index dbf40a91868a3..b8e0111e49db8 100644 --- a/py/selenium/webdriver/remote/webdriver.py +++ b/py/selenium/webdriver/remote/webdriver.py @@ -146,12 +146,12 @@ class BaseWebDriver(metaclass=ABCMeta): class WebDriver(BaseWebDriver): """Controls a browser by sending commands to a remote server. This server is expected to be running the WebDriver wire protocol as defined at - https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol. + https://www.selenium.dev/documentation/legacy/json_wire_protocol/. :Attributes: - session_id - String ID of the browser session started and controlled by this WebDriver. - capabilities - Dictionary of effective capabilities of this browser session as returned - by the remote server. See https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities + by the remote server. See https://www.selenium.dev/documentation/legacy/desired_capabilities/ - command_executor - remote_connection.RemoteConnection object used to execute commands. - error_handler - errorhandler.ErrorHandler object used to handle errors. """