product.ts 215 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import Base from './base'; import { el } from './utils/element'; class Product extends Base { get addToCartButton(): Cypress.Chainable { return el('product_add-to-cart'); } } export default new Product();