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 61e3476 commit cea9724Copy full SHA for cea9724
py/selenium/webdriver/webkitgtk/options.py
@@ -89,7 +89,8 @@ def to_capabilities(self):
89
browser_options = {}
90
if self.browser_executable_path:
91
browser_options["binary"] = self.browser_executable_path
92
- browser_options["args"] = self.browser_arguments
+ if self.browser_arguments:
93
+ browser_options["args"] = self.browser_arguments
94
browser_options["useOverlayScrollbars"] = self.overlay_scrollbars_enabled
95
96
webkitgtk[Options.KEY] = browser_options
0 commit comments