white-mouse-85089
01/19/2023, 8:28 AMdescribe("Page accessibility tests", () => {
beforeEach(() => {
cy.visit("https://www.knowit.no");
cy.contains("button", "Godta alle").click({ force: true });
cy.contains("Meny").click();
cy.injectAxe();
});
it("should open om oss page and run checkally", () => {
// Find and click on "Om oss" list-button
cy.contains("Om oss").click();
// Verfiy that the page has title "Om oss"
cy.get("h1").should("have.text", "Om oss");
cy.checkA11y();
});
it("should open Kunder and run checkally", () => {
// Find and click on "Kunder" list-button
cy.contains("Kunder").click();
// Verfiy that the page has title "Kunder"
cy.get("h1").should("have.text", "Kunder");
cy.checkA11y();
});
it("should open om Tjenester and run checkally", () => {
// Find and click on "Tjenester" list-button
cy.contains("Tjenester").click();
// Find and click on "Tjenester" list-button
cy.contains("Systemløsninger").click();
// Verfiy that the page has title "Tjenester"
cy.get("h1").should("have.text", "Tjenester");
cy.checkA11y();
});
});