commands.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // ***********************************************
  2. // This example commands.js shows you how to
  3. // create various custom commands and overwrite
  4. // existing commands.
  5. //
  6. // For more comprehensive examples of custom
  7. // commands please read more here:
  8. // https://on.cypress.io/custom-commands
  9. // ***********************************************
  10. //
  11. //
  12. // -- This is a parent command --
  13. // Cypress.Commands.add('login', (email, password) => { ... })
  14. //
  15. //
  16. // -- This is a child command --
  17. // Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
  18. //
  19. //
  20. // -- This is a dual command --
  21. // Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
  22. //
  23. //
  24. // -- This will overwrite an existing command --
  25. // Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
  26. Cypress.Commands.add('login', ()=>{
  27. cy.request({
  28. method: "POST",
  29. url: "http://localhost:7001/api/login",
  30. body: {
  31. "application": "app-built-in",
  32. "organization": "built-in",
  33. "username": "admin",
  34. "password": "123",
  35. "autoSignin": true,
  36. "type": "login",
  37. },
  38. }).then((Response) => {
  39. expect(Response).property("body").property("status").to.equal("ok");
  40. });
  41. })