From 400c437a32e797c6036ff5f405ba7e61f09ade1e Mon Sep 17 00:00:00 2001 From: aribeiro Date: Thu, 13 May 2021 11:29:50 +0100 Subject: Fix to avoid tool tip to be handed over When creating a relationship between nodes the qtip-content tip should not be visible once the test step is finished Issue-ID: SDC-3585 Signed-off-by: aribeiro Change-Id: I048ccf5b65d1c1111a5dcb0986237386ca734a3f --- .../sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'integration-tests/src') diff --git a/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java b/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java index a3fdc9884b..769e428090 100644 --- a/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java +++ b/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java @@ -79,6 +79,8 @@ public class CreateRelationshipFlow extends AbstractUiTestFlow { } relationshipWizardComponent.clickOnFinish(); compositionPage.isLoaded(); + //To avoid the content tip to be handed over the composition view + compositionPage.selectNode(relationshipInformation.getFromNode()); ExtentTestActions.takeScreenshot(Status.INFO, "relationship-created", String.format("Relationship from '%s' to '%s' created", relationshipInformation.getFromNode(), relationshipInformation.getToNode())); return Optional.of(compositionPage); -- cgit 1.2.3-korg