win系统中,cypress的环境安装
一、安装
需要用到npm安装命令,如果提示npm命令无法识别的,请自行安装操作系统版本对应的nodejs
1、运行cmd
2、创建一个cypress的目录mkdir cypress,或者手动创建后,通过cd 命令切换进入到该目录。
3、npm安装cypress
npm install cypress --save-dev
如果遇到WARN的提示可忽略
4、运行cypress
方法一:切换到cypress目录后,输入node_modules.bin\cypress open
C:\Users\admin\cypress>node_modules\.bin\cypress open
方法二:切换到cypress目录后,输入npx cypress open
c:\Users\admin\cypress>npx cypress open
执行后会弹出cypress的图形界面
二、环境安装时遇到的问题
1、进入cmd后直接使用npm安装命令,安装失败,提示:npm ERR!code EINTEGRITY等类似的错误提示。
创建cypress目录并切换进入该目录后,重新执行npm命令安装成功。
2、运行cypress时,必须在cypress的安装目录下运行。如果跳转到bin目录下再运行,会提示:file already exists, mkdir ‘C:\Users\admin\cypress\node_modules.bin\cypress’。
如果你遇到这个问题,只需要返回到C:\Users\admin\cypress目录后,重新执行
node_modules.bin\cypress open就可以了。
三、cypress的其他安装方式
请参考官网(翻译)完成安装
https://docs.cypress.io/zh-cn/guides/getting-started/installing-cypress.html#npm-install