Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix firefox driver_set_pref #658

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions internal/firefox.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,20 +261,12 @@ def driver_set_pref(self, key, value):
"""Set a Firefox pref at runtime"""
if self.driver is not None:
try:
script = 'const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");'
script += 'Services.prefs.'
if isinstance(value, bool):
script += 'setBoolPref'
elif isinstance(value, (str, unicode)):
script += 'setStringPref'
else:
script += 'setIntPref'
script += '({0}, {1});'.format(json.dumps(key), json.dumps(value))
logging.debug(script)
script = 'const { Preferences } = ChromeUtils.importESModule("resource://gre/modules/Preferences.sys.mjs");'
script += f'Preferences.set({json.dumps(key)}, {json.dumps(value)});'
self.driver.set_context(self.driver.CONTEXT_CHROME)
self.driver.execute_script(script)
except Exception:
logging.exception("Error setting pref")
except Exception as err:
logging.exception("Error setting pref %s => %s: %s", key, value, err)
finally:
self.driver.set_context(self.driver.CONTEXT_CONTENT)

Expand Down
Loading