saleor-dashboard/cypress/support/pages/configurationPage.js

13 lines
445 B
JavaScript
Raw Normal View History

import { CONFIGURATION_SELECTORS } from "../../elements";
export function expectConfigurationAvailableSectionsNumber(sectionsNumber) {
cy.get(CONFIGURATION_SELECTORS.configurationMenu)
.find("[data-test-id*=subsection]")
.should("have.length", sectionsNumber);
}
export function expectConfigurationSectionsToBeVisible(...sections) {
sections.forEach(selector => {
cy.get(selector).scrollIntoView().should("be.visible");
});
}