-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Tuğkan Boz edited this page Jan 14, 2023
·
1 revision
An automation test suite for an e-commerce website has been written using Cypress version 12 and following the Page Object Model (POM) design pattern.
├── cypress
│ ├── e2e
│ │ ├── home
│ │ │ ├── home.cy.js
│ │ │ ├── home.cy.js
│ ├── fixtures
│ │ ├── user.json
│ │ ├── error.json
│ ├── support
│ │ ├── commands.js
│ │ ├── e2e.js
│ ├── pages
│ │ ├── page.js
│ │ ├── home.page.js
│ │ ├── login.page.js
To run this project locally, follow these steps:
git clone https://github.com/tugkanboz/cypress-demo.git
npm install
npx cypress open