diff --git a/ivette/tests/libs/e2eService.ts b/ivette/tests/libs/e2eService.ts
index a89f43df74d1d77900e9c5012fd2ec7972cf551b..6b7c6dfe21818c2f76941a6b29700dae30f96146 100644
--- a/ivette/tests/libs/e2eService.ts
+++ b/ivette/tests/libs/e2eService.ts
@@ -43,7 +43,7 @@ export async function launchIvette(
       ...process.env,
       NODE_ENV: "development",
     },
-    args: params,
+    args: args,
   });
 
   // Get the first window that the app opens, wait if necessary
diff --git a/ivette/tests/libs/locatorsUtil.ts b/ivette/tests/libs/locatorsUtil.ts
index a24317eb2cb350c69425ad885fcd90208d19de56..552f469314525de83b86a097fbe3a02a2541aa4a 100644
--- a/ivette/tests/libs/locatorsUtil.ts
+++ b/ivette/tests/libs/locatorsUtil.ts
@@ -26,8 +26,10 @@ import { Locator, Page } from "@playwright/test";
  * Locator to select "Console" in the right menu
  */
 export function getConsoleView(window: Page): Locator {
-  return window
-    .getByText("Console").first();
+  window
+    .getByText("Other Plugins")
+    .click();
+  return window.getByText("Console").first();
 }
 
 /**