Skip to content

Commit 3476715

Browse files
Delta456sandeepsuryaprasad
authored andcommitted
[py] add doc for driver_path_env_key (SeleniumHQ#14997)
* Revert "add alias attr to all edge structs" This reverts commit f17dd08dd32998a310510f0abc44e5b484202a4d. * Reapply "add alias attr to all edge structs" This reverts commit cc16e3f. oops * [py] add doc for driver_path_env_key [skip ci]
1 parent fb9480b commit 3476715

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

py/selenium/webdriver/chromium/service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class ChromiumService(service.Service):
3232
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
3333
:param log_output: (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
3434
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
35+
:param driver_path_env_key: (Optional) Environment variable to use to get the path to the driver executable.
3536
"""
3637

3738
def __init__(

py/selenium/webdriver/edge/service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class Service(service.ChromiumService):
3232
:param log_output: (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
3333
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
3434
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
35+
:param driver_path_env_key: (Optional) Environment variable to use to get the path to the driver executable.
3536
"""
3637

3738
def __init__(

py/selenium/webdriver/firefox/service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class Service(service.Service):
3232
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
3333
:param log_output: (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
3434
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
35+
:param driver_path_env_key: (Optional) Environment variable to use to get the path to the driver executable.
3536
"""
3637

3738
def __init__(

py/selenium/webdriver/safari/service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class Service(service.Service):
3232
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
3333
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
3434
:param enable_logging: (Optional) Enable logging of the service. Logs can be located at `~/Library/Logs/com.apple.WebDriver/`
35+
:param driver_path_env_key: (Optional) Environment variable to use to get the path to the driver executable.
3536
"""
3637

3738
def __init__(

0 commit comments

Comments
 (0)