Skip to content
Closed
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
1 change: 1 addition & 0 deletions packages/compass-e2e-tests/helpers/compass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,7 @@ export async function startBrowser(

const options: WebdriverIO.RemoteConfig = {
capabilities: {
webSocketUrl: true,
browserName,
Comment on lines 854 to 856
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

webSocketUrl: true is applied unconditionally for all web E2E sessions (including the Firefox variants in Evergreen). Since this is described as an experiment to “try enabling BiDi”, consider gating it behind an explicit CLI flag/env var (defaulting off) and only enabling when the selected driver/browser version is known to support the webSocketUrl capability, so CI can fall back to classic behavior if needed.

Copilot uses AI. Check for mistakes.
...(context.browserVersion && {
browserVersion: context.browserVersion,
Expand Down
Loading