payments.cy.js 516 B

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