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.
_get_firefox_start_cmd
os._name
1 parent 49efb1c commit a8026c1Copy full SHA for a8026c1
py/selenium/webdriver/firefox/firefox_binary.py
@@ -168,7 +168,7 @@ def _get_firefox_start_cmd(self):
168
start_cmd = os.path.expanduser("~") + start_cmd
169
elif self.platform == "windows": # same
170
start_cmd = self._find_exe_in_registry() or self._default_windows_location()
171
- elif self.platform == "java" and os._name == "nt":
+ elif self.platform == "java" and os.name == "nt":
172
start_cmd = self._default_windows_location()
173
else:
174
for ffname in ["firefox", "iceweasel"]:
0 commit comments