category.ts 177 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 import { el } from './utils/element'; class Category { get products(): Cypress.Chainable { return el('category-product-card', 'a'); } } export default new Category();