- 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()
Cypress Limitations
Subscribe to:
Post Comments (Atom)
-
These are some common actions used in Cypress Back (browser) cy.go('back') Forward cy.go('forward') Reload cy.reload() cy.r...
-
What is the purpose of cy.get() command? It is used to get one or more DOM elements in selector or alias It is safe to chain further comman...
-
Alert : Display a message to the user with an OK button. The user must click OK to dismiss the alert Here is the way to verify that the al...
No comments:
Post a Comment