UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

9 lines (8 loc) 290 B
import CommandBase from './commandBase'; export default class DataUmb extends CommandBase { commandName = 'dataUmb'; method(value: string, child?: string) { if (child !== undefined) return cy.get(`[data-umb=${value}] ${child}`); else return cy.get(`[data-umb=${value}]`); } }