We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a21cc1c commit c6ddb7fCopy full SHA for c6ddb7f
1 file changed
test/browser_common.py
@@ -169,6 +169,13 @@ def get_firefox_version():
169
ini_path = os.path.join(os.path.dirname(exe_path), '../Resources/platform.ini' if MACOS else 'platform.ini')
170
# On Linux, Firefox system installation uses a specific directory structure.
171
if LINUX and exe_path.startswith('/usr/bin/'):
172
+
173
+ # XXX
174
+ for root, dirs, files in os.walk("/usr/lib"):
175
+ for name in files:
176
+ if name.endswith('.ini'):
177
+ print(os.path.join(root, name))
178
179
if os.path.isfile('/usr/lib/firefox-esr/platform.ini'):
180
ini_path = '/usr/lib/firefox-esr/platform.ini'
181
elif os.path.isfile('/usr/lib/firefox/platform.ini'):
0 commit comments