Skip to content

Commit e7958a9

Browse files
committed
Py: Bring docstring :Args: in order
1 parent 589c637 commit e7958a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: py/selenium/webdriver/remote/webdriver.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ def __init__(self, command_executor='http://127.0.0.1:4444/wd/hub',
5656
Create a new driver that will issue commands using the wire protocol.
5757
5858
:Args:
59-
- desired_capabilities - A dictionary of capabilities to request when
60-
starting the browser session. Required parameter.
6159
- command_executor - Either a string representing URL of the remote server or a custom
6260
remote_connection.RemoteConnection object. Defaults to 'http://127.0.0.1:4444/wd/hub'.
63-
- proxy - A selenium.webdriver.common.proxy.Proxy object. The browser session will
64-
be started with given proxy settings, if possible. Optional.
61+
- desired_capabilities - A dictionary of capabilities to request when
62+
starting the browser session. Required parameter.
6563
- browser_profile - A selenium.webdriver.firefox.firefox_profile.FirefoxProfile object.
6664
Only used if Firefox is requested. Optional.
67-
- keep_alive - Whether configure remote_connection.RemoteConnection to use
65+
- proxy - A selenium.webdriver.common.proxy.Proxy object. The browser session will
66+
be started with given proxy settings, if possible. Optional.
67+
- keep_alive - Whether to configure remote_connection.RemoteConnection to use
6868
HTTP keep-alive. Defaults to False.
6969
"""
7070
if desired_capabilities is None:

0 commit comments

Comments
 (0)