test case fixed

it was checking 3rd key:value pair for content type but with changes it will added to first empty field (0th)
This commit is contained in:
Apeksha Bhosale 2021-03-23 16:55:21 +05:30
parent 5d71e86f43
commit 28a4b4a6d6

View File

@ -29,17 +29,14 @@ describe("API Panel Test Functionality", function() {
cy.NavigateToAPI_Panel();
cy.CreateAPI("CrashTestAPI");
cy.SelectAction(testdata.postAction);
cy.xpath(apiwidget.postDefaultContentTypeHeaderKey)
cy.xpath(apiwidget.headerKey)
.first()
.focus({ force: true })
.type("{uparrow}", { force: true })
.type("{ctrl}{shift}{downarrow}", { force: true })
.type("{backspace}", { force: true });
// assert so that this fails
cy.xpath(apiwidget.postDefaultContentTypeHeaderKey).should("be.visible");
cy.xpath(apiwidget.postDefaultContentTypeHeaderKey).should(
"have.value",
"",
);
cy.xpath(apiwidget.headerKey).should("be.visible");
cy.xpath(apiwidget.headerKey).should("have.value", "");
});
});