cypress-slow-down
Slow down your Cypress tests
Watch this plugin in the video Slow Down Cypress Tests.
Install
Add this NPM package to your project
# install using NPM
$ npm i -D cypress-slow-down
# or install using Yarn
$ yarn add -D cypress-slow-down
Include the plugin and call its function from your spec or support file
import { slowCypressDown } from 'cypress-slow-down'
slowCypressDown()
Options
You can control the delay before each command (in milliseconds)
slowCypressDown(1000)
You can also control the delay using the Cypress environment variable commandDelay
.
const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
env: {
commandDelay: 500,
},
},
})
import { slowCypressDown } from 'cypress-slow-down'
slowCypressDown()
Disable the slow down
You can disable the default slowdown by using false
. For example, from the command line you can pass the boolean value:
$ npx cypress run --env commandDelay=false
Or you can use the process (OS) environment variable
$ CYPRESS_commandDelay=false npx cypress run
Or you can use the cypress.config.js
to disable the slowdown
const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
env: {
commandDelay: false,
},
},
})
Change the command delay from DevTools
Because this plugin uses cypress-plugin-config to read the command delay option, you can change its value or disable the plugin completely from the DevTools console using the command Cypress.setPluginConfigValue('commandDelay', <value>)
The re-run the tests by pressing the key "R" or clicking "Run All Tests" button.
Small print
Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2022
License: MIT - do anything with the code, but don't blame me if it does not work.
Support: if you find any problems with this module, email / tweet /
open issue on Github
MIT License
Copyright (c) 2022 Gleb Bahmutov <gleb.bahmutov@gmail.com>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.