https://github.com/anniedotexe/cypress-web-automation-testing-from-zero-to-hero
This repository contains all my notes and coursework from the Udemy course. https://www.udemy.com/course/cypress-web-automation-testing-from-zero-to-hero
https://github.com/anniedotexe/cypress-web-automation-testing-from-zero-to-hero
Last synced: 4 months ago
JSON representation
This repository contains all my notes and coursework from the Udemy course. https://www.udemy.com/course/cypress-web-automation-testing-from-zero-to-hero
- Host: GitHub
- URL: https://github.com/anniedotexe/cypress-web-automation-testing-from-zero-to-hero
- Owner: anniedotexe
- Created: 2023-09-01T20:48:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-14T15:51:52.000Z (about 2 years ago)
- Last Synced: 2025-03-14T01:47:11.800Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 3.71 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cypress: Web Automation Testing from Zero to Hero Coursework
This repository contains all my notes and coursework from the Udemy course [Cypress: Web Automation Testing from Zero to Hero](https://www.udemy.com/course/cypress-web-automation-testing-from-zero-to-hero).
## Getting Started
### Setting Up Environment
* Install [Node JS](https://nodejs.org/en)
* Install [Git](https://git-scm.com/downloads)
* Install [VS Code](https://code.visualstudio.com/)### Running Environment
1. [Clone the repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository)
2. Open the Cypress Test folder (cypress spec files can be found in `/Cypress Test/cypress/e2e`)* Run the Example UI
```
npm start
```
* Run Cypress
```
npx cypress open
```