Cypress Limitations


  • Multiple Tabs cannot be opened
  • Cannot run same time with different browsers
  • Cypress commands runs inside the browser
  • No support for native or mobile 
  • Support javascript only

  • Each test is bound to a single superdomIf we attempt to visit two diffrent supper domains in a single test it will fail  . But if we visit two subdomains it is works fine
    • Ex: cy.visit('www.abc.com')
      cy.visit ('www.yahoo.com')
    • cy.origin()





No comments:

Post a Comment