View | Details | Raw Unified | Return to bug 38899
Collapse All | Expand All

(-)a/t/cypress/integration/ERM/DataProviders_spec.ts (-1 / +1 lines)
Lines 636-642 describe("Data provider tab options", () => { Link Here
636
            }
636
            }
637
        );
637
        );
638
638
639
        cy.get("#files > form > fieldset > input[type=submit]").click();
639
        cy.get("#files > form > fieldset > button").click();
640
640
641
        cy.get("main div[class='alert alert-info']").should(
641
        cy.get("main div[class='alert alert-info']").should(
642
            "have.text",
642
            "have.text",
(-)a/t/cypress/integration/ERM/UsageReports_spec.ts (-2 / +3 lines)
Lines 105-111 describe("Saved reports", () => { Link Here
105
            { force: true }
105
            { force: true }
106
        );
106
        );
107
107
108
        cy.get("#report_builder .default-report .action input").click();
108
        cy.get("#report_builder .default-report .action button")
109
            .contains("Submit")
110
            .click();
109
111
110
        cy.url({ decode: true }).then(url => {
112
        cy.url({ decode: true }).then(url => {
111
            const urlParams = url.split("viewer?")[1].split("data=")[1];
113
            const urlParams = url.split("viewer?")[1].split("data=")[1];
112
- 

Return to bug 38899