umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
19 lines (14 loc) • 405 B
text/typescript
import CommandBase from './commandBase';
export default class UmbracoSection extends CommandBase {
_commandName = 'umbracoSection';
method(sectionAlias) {
const cy = this.cy;
const cypress = this.cypress;
cy.get('[data-element="section-' + sectionAlias + '"]', {
log: false,
}).click({ log: false });
cypress.log({
displayName: 'Umbraco Section ',
});
}
}