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.
creation_flags
Service
**kwargs
1 parent 520510d commit 966bd3fCopy full SHA for 966bd3f
py/selenium/webdriver/common/service.py
@@ -65,7 +65,7 @@ def __init__(
65
self.log_file = open(os.devnull, "wb") if not _HAS_NATIVE_DEVNULL and log_file == DEVNULL else log_file
66
self.start_error_message = start_error_message or ""
67
# Default value for every python subprocess: subprocess.Popen(..., creationflags=0)
68
- self.creation_flags = 0
+ self.creation_flags = kwargs.pop("creation_flags", 0)
69
self.env = env or os.environ
70
71
@property
0 commit comments