Cypress 简明教程

Cypress - Supported Browsers

Cypress可以在Chrome、Electron和Firefox等浏览器中运行测试。在测试运行器中,我们可以在右上角选择浏览器。

另外,必须注意的是,如果浏览器选项不可用,这意味着我们的系统中没有最新版本的浏览器。

cypress electron

Execution from Other Browsers

下面解释了从命令行从其他浏览器执行:

要运行 execution in Chrome ,您需要运行下面提到的命令:

./node_modules/.bin/cypress run -- browser chrome

您会看到以下画面:

execution in chrome

要运行 execution in Firefox ,运行下面给出的命令:

./node_modules/.bin/cypress run -- browser firefox

您会看到以下画面:

execution in headed mode

要运行 execution in headed mode ,运行下面给出的命令:

./node_modules/.bin/cypress run -- headed

从命令行,如果未指定选项,Cypress将在无头模式下执行测试。