Skip to content

wizeline/Cypress-Framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About the project

An automation testing framework for web application using Cypress

Project structure

.
├── cypress
│   ├── fixtures
│   │   ├── login.json
│   │   └── ...
│   ├── integration
│   │   ├── homepage.spec.js
│   │   ├── login.spec.js
│   │   └── ...
│   ├── page-objects
│   │   ├── BasePage.js
│   │   ├── HomePage.js
│   │   ├── LoginPage.js
│   │   └── ...
│   ├── plugins
│   │   ├── index.js
│   │   └── ...
│   └── support
│      ├── utils
│      │   ├── Utils.js
│      │   └── ...
│      ├── commands.js
│      ├── index.js
│      └── ...
├── package.json
└── cypress.json

Getting Started

Prerequisites

  • NodeJS

Installation

  1. Clone the repo
git clone https://github.com/wizeline/Cypress-Framework.git
  1. Install NPM packages
$ npm install

Running the tests

  • Open Cypress:
$ npm run cy:open
  • Running the tests in headless mode with Chrome
$ npm run cy:run-chrome
  • Running the tests in headless mode with Firefox
$ npm run cy:run-firefox
  • Running the tests in headless mode with Electron
$ npm run cy:run-electron

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published