https://github.com/dssalaza/cypress-automation-framework
A repo for applying all the automation concepts and suggested practices learned so far by using cypress and learning TypeScript.
https://github.com/dssalaza/cypress-automation-framework
cypress cypress-io testing
Last synced: 12 months ago
JSON representation
A repo for applying all the automation concepts and suggested practices learned so far by using cypress and learning TypeScript.
- Host: GitHub
- URL: https://github.com/dssalaza/cypress-automation-framework
- Owner: dssalaza
- Created: 2021-08-05T21:27:42.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-27T03:57:30.000Z (almost 5 years ago)
- Last Synced: 2025-02-23T17:47:42.085Z (over 1 year ago)
- Topics: cypress, cypress-io, testing
- Language: TypeScript
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cypress-automation-framework
A repo for applying all the automation concepts and suggested practices learned so far using Cypress and TypeScript.
## Dev Notes
1. In cypress.json "chromeWebSecurity": false is set in that way because the web application is accessing a cross-origin frame, hence it blocks the browser.
2. Create cypress.env.json file at a root level of the project and add the password provided in the webpage.
## References:
* [Applitools - Applying OOP webinar](https://applitools.com/event/applying-object-oriented-programming-principles-to-test-automation-design)
* [Github - Cypress](https://github.com/filiphric/cypress-pro-test-talk)
* [Github - Add cypress custom command in TS](https://github.com/cypress-io/add-cypress-custom-command-in-typescript/blob/master/cypress/support/commands.ts)
* [Gitnation - Don’t Make These Testing Mistakes](https://portal.gitnation.org/contents/dont-make-these-testing-mistakes)
* [Google - JSON convention](https://google.github.io/styleguide/jsoncstyleguide.xml?showone=Property_Name_Format#Property_Name_Format)
* [YT - Starting with TypeScript in Cypress](https://www.youtube.com/watch?v=r6my4a14knE&t=1024s)