Skip to content

Commit 9c4eb36

Browse files
[py] fixed defect in docstrings (#12440)
* [py] fixed defect in docstrings
1 parent 0c48804 commit 9c4eb36

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

py/selenium/webdriver/edge/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
class WebDriver(ChromiumDriver):
26-
"""Controls the MDEdgeDriver and allows you to drive the browser."""
26+
"""Controls the MSEdgeDriver and allows you to drive the browser."""
2727

2828
def __init__(
2929
self,

py/selenium/webdriver/remote/webdriver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,12 @@ class BaseWebDriver(metaclass=ABCMeta):
146146
class WebDriver(BaseWebDriver):
147147
"""Controls a browser by sending commands to a remote server. This server
148148
is expected to be running the WebDriver wire protocol as defined at
149-
https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol.
149+
https://www.selenium.dev/documentation/legacy/json_wire_protocol/.
150150
151151
:Attributes:
152152
- session_id - String ID of the browser session started and controlled by this WebDriver.
153153
- capabilities - Dictionary of effective capabilities of this browser session as returned
154-
by the remote server. See https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities
154+
by the remote server. See https://www.selenium.dev/documentation/legacy/desired_capabilities/
155155
- command_executor - remote_connection.RemoteConnection object used to execute commands.
156156
- error_handler - errorhandler.ErrorHandler object used to handle errors.
157157
"""

0 commit comments

Comments
 (0)