1. 新建一个project ,运行cypress open 的时候会init 出来一个项目结构。
/cypress
/fixtures # mock数据的存储目录,这里存放了所有mock的json文件
- example.json
/integration # 测试用例代码目录
/examples
/plugins # 插件目录
- index.js
/support
- commands.js
- index.js
2. 配置文件 cypress.json 介绍 ,下面只是举例一些常用,具体可以看官网:Configuration | Cypress Documentation
{
"baseUrl": "http://127.0.0.1:8081",
"viewportWidth": 1920,
"viewportHeight": 1080,
"defaultCommandTimeout":60000,
"requestTimeout":100000,
"responseTimeout":100000,
"watchForFileChanges":false,
"video": false,
"reporter": &#