Complete the code to run Cypress tests in headless mode using the CLI.
npx cypress run --[1]Using --headless runs Cypress tests without opening the browser UI, which is headless mode.
Complete the code to specify Chrome browser in headless mode for Cypress tests.
npx cypress run --browser [1] --headlessTo run tests headlessly in Chrome, specify --browser chrome along with --headless.
Fix the error in the command to run Cypress tests headlessly in Electron browser.
npx cypress run --browser electron --[1]The correct flag to run tests without UI is --headless. Using --headed or --open is incorrect here.
Fill both blanks to run Cypress tests headlessly and save videos.
npx cypress run --[1] --[2]
Use --headless to run tests without UI and --video to save test videos.
Fill all three blanks to run Cypress tests headlessly on Firefox with a specific config file.
npx cypress run --browser [1] --[2] --config-file [3]
Specify --browser firefox to use Firefox, --headless to run without UI, and --config-file cypress.config.js to use a custom config file.