Getting Started with Cypress

Pre-requisites
- Install Node
Ready to Play with Cypress
- Create a folder and do npm init
- Install Cypress using npm — npm i cypress — save-dev

3. Congrats !!! Done with your initial setup.

I am quite hungry so lets automate the Uber eats Order some food using Cypress.
- Visit www.ubereats.com
- Search for Ascendas IT Park
- Select a hotel
- Choose food
- +/ — Quantity and do Add 2 Cart
- Go to node_modules/.bin/cypress open

After the above command, you will get a folder structure created as above one. You will have fixtures, integration example specs, plugins, support and cypress.json file.
Every test will have spec in the name.

Double click on any spec file to run. Happy testing :) In Next Blog we can deep dive into how to write test in cypress.