Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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