Skip to content

Commit

Permalink
test: Re-disable Firefox BiDi async events
Browse files Browse the repository at this point in the history
Firefox 135 enabled async BiDi event dispatching [1]. This causes some
regression where sometimes input events never get a response [2], which
often breaks e.g. cockpit-podman's `testFailingPodmanService`.

Re-disable async events for the time being to stabilize tests, until
this gets debugged and fixed properly.

Fixes cockpit-project/cockpit-podman#1999

[1] https://bugzilla.mozilla.org/show_bug.cgi?id=1922077
[2] https://bugzilla.mozilla.org/show_bug.cgi?id=1947402
  • Loading branch information
martinpitt authored and allisonkarlitskaya committed Feb 11, 2025
1 parent 91bf28a commit 64e7b9c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/common/webdriver_bidi.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,8 @@ async def start_bidi_session(self) -> None:
(self.profiledir / "user.js").write_text(f"""
user_pref("remote.enabled", true);
user_pref("remote.frames.enabled", true);
// https://bugzilla.mozilla.org/show_bug.cgi?id=1947402
user_pref('remote.events.async.enabled', false);
user_pref("app.update.auto", false);
user_pref("datareporting.policy.dataSubmissionEnabled", false);
user_pref("toolkit.telemetry.reportingpolicy.firstRun", false);
Expand Down

0 comments on commit 64e7b9c

Please sign in to comment.