From d269032553f226db36bc31a950bfc1e5535d487a Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Fri, 20 Nov 2020 11:07:13 +0300 Subject: [PATCH] Adding extra click in Add Cluster button Signed-off-by: Alex Andreev --- integration/__tests__/app.tests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/__tests__/app.tests.ts b/integration/__tests__/app.tests.ts index 814165ca6c..8d75cb2535 100644 --- a/integration/__tests__/app.tests.ts +++ b/integration/__tests__/app.tests.ts @@ -145,6 +145,7 @@ describe("Lens integration tests", () => { await app.client.click("div.minikube"); // select minikube context } // else the only context, which must be 'minikube', is automatically selected await app.client.click("div.Select__control"); // hide the context drop-down list (it might be obscuring the Add cluster(s) button) + await app.client.click("button.primary"); // blur focus from previous select await app.client.click("button.primary"); // add minikube cluster };