We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31144ff commit 084ffc8Copy full SHA for 084ffc8
py/selenium/webdriver/safari/service.py
@@ -22,6 +22,8 @@
22
from selenium.webdriver.common import service
23
from selenium.webdriver.common import utils
24
25
+DEFAULT_EXECUTABLE_PATH: str = "/usr/bin/safaridriver"
26
+
27
28
class Service(service.Service):
29
"""
@@ -30,7 +32,7 @@ class Service(service.Service):
30
32
31
33
def __init__(
34
self,
- executable_path: str = "/usr/bin/safaridriver",
35
+ executable_path: str = DEFAULT_EXECUTABLE_PATH,
36
port: int = 0,
37
quiet: bool = False,
38
service_args: typing.Optional[typing.List[str]] = None,
0 commit comments