This commit is contained in:
2020-04-03 20:57:09 +00:00
parent f12cb6628e
commit 7553f1be69
3 changed files with 42 additions and 4 deletions

View File

@@ -14,6 +14,38 @@ describe("GZ-DATA-TABLE", () => {
cy.visit("/widgets");
cy.url().should("include", "/widgets");
cy.contains("Rows per page");
//select default widget list view
cy.get("[data-cy=selectlistview]").type("-{enter}", { force: true });
//confirm we see the data expected
cy.contains("Name");
cy.contains("Serial #");
cy.contains("Price");
//refresh
cy.get("[data-cy=refresh]").click();
//change datafilters
cy.get("[data-cy=selectlistview]").type("-{enter}", { force: true });
//filter
cy.get("[data-cy=filter]").click();
cy.contains("List view");
//move username to first position
cy.get(
'[data-cy="columncard:username"] > .v-card__text > .d-flex > :nth-child(1) > .v-btn__content > [data-cy=movestart]'
).click();
//go back to widgetlist
cy.go("back");
//confirm the first column is the username
// console.log(
// cy.get("thead > tr > th:nth-child(1) > span").invoke("innerText")
// );
cy.get("thead > tr > th:nth-child(1) > span").contains("NUser");
//cy.get("thead > tr > th:nth-child(1)").contains("User");
// //navigate and confirm
// //open nav and home menu
// cy.get("[data-cy=navicon]").click();