Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 653 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 653 Bytes

Cypress Testsuite

  1. delete the existing cypress folder within your frappe application folder.

  2. clone this repository in the apps/frappe directory

$ git clone git@github.com:frappe/cypress-testsuite.git cypress
  1. create a cypress.json file within the frappe application directory, an example config for it would go as follows:
{
  "baseUrl": "http://<instance-url>:<port>",
  "projectId": "92odwv",
  "adminPassword": "frappe",
  "viewportHeight": 1080,
  "viewportWidth": 1920
}
  1. checkout the commands.js for available commands, and some example ui tests for guidelines.