test: update cypress tests as per added test data in TED (#13761)

* update data table
This commit is contained in:
Parthvi12 2022-05-11 23:20:12 +05:30 committed by GitHub
parent 7856d8234e
commit 72e24b9a2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -213,9 +213,9 @@ describe("AForce - Community Issues page validations", function () {
table.OpenNFilterTable("Title", "contains", "query", 'OR', 1)
table.ReadTableRowColumnData(1, 0).then(($cellData) => {
expect($cellData).to.eq("Question");
expect($cellData).to.be.oneOf(['Troubleshooting','Question'])
});
table.ReadTableRowColumnData(7, 1).then(($cellData) => {
table.ReadTableRowColumnData(6, 1).then(($cellData) => {
expect($cellData).to.eq("Run storeValue commands before a Query.run()");
});
table.RemoveFilterNVerify("Question", true, false)

View File

@ -73,8 +73,9 @@ describe("Git sync apps", function() {
cy.get(generatePage.selectTableDropdown).click();
cy.get(generatePage.dropdownOption)
.first()
.contains("public.configs")
.click();
// skip optional search column selection.
cy.get(generatePage.generatePageFormSubmitBtn).click();