Skip to content

Commit ea5bf65

Browse files
authored
Add wptrunner chrome args for DBSC tests (#57690)
1 parent 3c4f8db commit ea5bf65

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/wptrunner/wptrunner/browsers/chrome.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,12 @@ def executor_kwargs(logger, test_type, test_environment, run_info_data, subsuite
148148
# This is needed to test extensions, PWA, compilation caches that
149149
# require local CDP access.
150150
chrome_options["args"].append("--remote-debugging-pipe")
151+
# For Device Bound Session Credentials tests.
152+
chrome_options["args"].append("--enable-features=" + ",".join([
153+
"EnableBoundSessionCredentialsSoftwareKeysForManualTesting",
154+
"DeviceBoundSessions:RefreshQuota/false/RequireOriginTrialTokens/false",
155+
"DeviceBoundSessionsFederatedRegistration",
156+
]))
151157

152158
# Classify `http-local`, `http-public` and https variants in the
153159
# appropriate IP address spaces.

0 commit comments

Comments
 (0)