Skip to content

Commit 00aa730

Browse files
authored
Merge branch 'trunk' into retry-after-drain
2 parents c67e940 + 7983769 commit 00aa730

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)