From 6831c97b9caa127d2a5e73deae8c480fa9aafe15 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 30 Sep 2021 09:05:08 -0400 Subject: [PATCH] Fix integration tests Signed-off-by: Sebastian Malton --- integration/helpers/utils.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration/helpers/utils.ts b/integration/helpers/utils.ts index f9a10e1d4d..e52ae1d87f 100644 --- a/integration/helpers/utils.ts +++ b/integration/helpers/utils.ts @@ -104,10 +104,7 @@ function minikubeEntityId() { * From the catalog, click the minikube entity and wait for it to connect, returning its frame */ export async function lauchMinikubeClusterFromCatalog(window: Page): Promise { - await window.waitForSelector("div.TableCell"); await window.click("div.TableCell >> text='minikube'"); - await window.waitForSelector("div.drawer-title-text >> text='KubernetesCluster: minikube'"); - await window.click("div.EntityIcon div.HotbarIcon div div.MuiAvatar-root"); const minikubeFrame = await window.waitForSelector(`#cluster-frame-${minikubeEntityId()}`);