From 59e446fb77ccf05aeae9b7046bd80e10124707c0 Mon Sep 17 00:00:00 2001 From: eschcam Date: Wed, 1 Feb 2023 12:17:18 +0000 Subject: Disable editing the name of existing attributes Also added a patch to fix an exception been thrown when editing existing attributes Issue-ID: SDC-3384 Signed-off-by: eschcam Change-Id: I524bad3046699baf66f407d1cf0c36394a66b623 --- .../test/java/org/onap/sdc/frontend/ci/tests/pages/AttributeModal.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'integration-tests') diff --git a/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/pages/AttributeModal.java b/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/pages/AttributeModal.java index bd1330d8cf..037d7e4d49 100644 --- a/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/pages/AttributeModal.java +++ b/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/pages/AttributeModal.java @@ -46,9 +46,9 @@ public class AttributeModal extends AbstractPageObject { public void fillForm(final AttributeData attributeData, final boolean isUpdate) { if (!isUpdate) { editName(attributeData.getAttributeName()); + editType(attributeData.getAttributeType()); } editDescription(attributeData.getDescription()); - editType(attributeData.getAttributeType()); editDefaultValue(attributeData.getDefaultValue()); } -- cgit 1.2.3-korg