products.cy.js 523 B

12345678910111213141516
  1. describe('Test products', () => {
  2. beforeEach(()=>{
  3. cy.visit("http://localhost:7001");
  4. cy.login();
  5. })
  6. const selector = {
  7. add: ".ant-table-title > div > .ant-btn > span"
  8. };
  9. it("test products", () => {
  10. cy.visit("http://localhost:7001");
  11. cy.visit("http://localhost:7001/products");
  12. cy.url().should("eq", "http://localhost:7001/products");
  13. cy.get(selector.add).click();
  14. cy.url().should("include","http://localhost:7001/products/")
  15. });
  16. })