commit | 400c437a32e797c6036ff5f405ba7e61f09ade1e | [log] [tgz] |
---|---|---|
author | aribeiro <anderson.ribeiro@est.tech> | Thu May 13 11:29:50 2021 +0100 |
committer | Christophe Closset <christophe.closset@intl.att.com> | Sat May 15 06:23:44 2021 +0000 |
tree | 19a56330973c3bd85db4acb8e0ea6b1dd5598ba4 | |
parent | 7ea317f4ffc1ef2e54bed5df9d932d8128638f4b [diff] |
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 <anderson.ribeiro@est.tech> Change-Id: I048ccf5b65d1c1111a5dcb0986237386ca734a3f
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 a3fdc98..769e428 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 @@ } 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);