We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d88e4d commit bce4851Copy full SHA for bce4851
tests/fixtures.browser.ts
@@ -131,6 +131,15 @@ export const test = base.extend<{
131
132
await test.step("Configure the environment", async () => {
133
if (vaultHostURL) {
134
+ // Dismiss the welcome carousel
135
+ const introCarouselURL = `chrome-extension://${extensionId}/popup/index.html#/intro-carousel`;
136
+ await testPage.goto(introCarouselURL, defaultGotoOptions);
137
+ const welcomeCarouselDismissButton = await testPage.getByRole(
138
+ "button",
139
+ { name: "Log in" },
140
+ );
141
+ await welcomeCarouselDismissButton.click();
142
+
143
const extensionURL = `chrome-extension://${extensionId}/popup/index.html#/login`;
144
await testPage.goto(extensionURL, defaultGotoOptions);
145
0 commit comments