Skip to content

Commit

Permalink
[py] fixed defect in docstrings (#12440)
Browse files Browse the repository at this point in the history
* [py] fixed defect in docstrings
  • Loading branch information
sandeepsuryaprasad authored Jul 29, 2023
1 parent 0c48804 commit 9c4eb36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/edge/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions py/selenium/webdriver/remote/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down

0 comments on commit 9c4eb36

Please sign in to comment.