Skip to content
Snippets Groups Projects
Commit cf8e75c9 authored by Damien IRIBERRY's avatar Damien IRIBERRY
Browse files

[ivette] - Fix e2e tests

parent aafffd03
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ export async function launchIvette( ...@@ -43,7 +43,7 @@ export async function launchIvette(
...process.env, ...process.env,
NODE_ENV: "development", NODE_ENV: "development",
}, },
args: params, args: args,
}); });
// Get the first window that the app opens, wait if necessary // Get the first window that the app opens, wait if necessary
......
...@@ -26,8 +26,10 @@ import { Locator, Page } from "@playwright/test"; ...@@ -26,8 +26,10 @@ import { Locator, Page } from "@playwright/test";
* Locator to select "Console" in the right menu * Locator to select "Console" in the right menu
*/ */
export function getConsoleView(window: Page): Locator { export function getConsoleView(window: Page): Locator {
return window window
.getByText("Console").first(); .getByText("Other Plugins")
.click();
return window.getByText("Console").first();
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment