From 50d5b766a5260068254f83e960d68bfcf7d0adc5 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 19 Feb 2025 16:27:44 -0330 Subject: [PATCH] chore: Expose E2E Chrome driver extension ID The `extensionId` property was accidentally omitted by the ChromeDriver builder. This was an old mistake, made in #7690. You can see this property is expected in `test/e2e/webdriver/index.js`, though in practice we don't use this `extensionId` for anything right now. This was fixed so that we could use the `extensionId` in the future if necessary. This was extracted from #27782, which used this ID in some API spec e2e test helpers. --- test/e2e/webdriver/chrome.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/webdriver/chrome.js b/test/e2e/webdriver/chrome.js index 32a55bfc6dee..0bf92237b997 100644 --- a/test/e2e/webdriver/chrome.js +++ b/test/e2e/webdriver/chrome.js @@ -109,6 +109,7 @@ class ChromeDriver { return { driver, + extensionId, extensionUrl: `chrome-extension://${extensionId}`, }; }