commerce/cypress/e2e/header.cy.js
2025-02-10 15:43:17 -04:00

11 lines
415 B
JavaScript

/// <reference types="cypress" />
/// <reference types="../support" />
describe("Testing for header elements", () => {
it("return the right product when searched", () => {
cy.visit("http://localhost:3000");
cy.getBySel("search-bar-input").type("camisa{enter}");
cy.getBySel("product-link").first().click();
cy.location("pathname").should("eq", "/product/otra-camisa");
})
})