How to clear cache files in Cypress?

  How to Clear all cache files in Cypress:-

Main Reason of cache clear is to make Cypress more fast. 

Step 1:

Run Cypress in Open mode.

Step 2:

Click on file.


Clear Cache in Cypress


Step 3:

Click on View App Data.


Step 4:
Select all files (Ctrl+A).





Step 5:

Delete all files (Shift+Delete).


Your all Cache files are deleted . Now Open Your Cypress again & Now it will be more fast than previous.

Clearing Cache by Terminal:

Sometimes we install a new Cypress Version and its not working .It shows some errors during verification ,Then try this method

It looks like this is your first time using Cypress: 7.5.0

Cypress verification timed out.

This command failed with the following output:

C:\Users\Nabi\AppData\Local\Cypress\Cache\7.5.0\Cypress\Cypress.exe --smoke-test --ping=979

Command timed out after 30000 milliseconds: C:\Users\Nabi\AppData\Local\Cypress\Cache\7.5.0\Cypress\Cypress.exe --smoke-test --ping=979

Timed out

Platform: win32 (6.3.9600)

Cypress Version: 7.5.0

(1) Open your Terminal

Run anyone of these commands:

npm cache clean --force
npm cache clear --force
npm cache rm --force


Now , Verify cache :

npm cache verify



Now Open Your Cypress. It will work




Comments

  1. I'm trying to install Cypress 9.5.3 and have made multiple attempts. I ended up deleting project folder and attempting again. The installation stalls at the first line and does no more. So my question is, do I need to delete the Cypress folders that are in the AppData both Local and Roaming Paths?

    ReplyDelete
    Replies
    1. No, You don't need to delete the project.Check your internet conection or may be you are using any proxy

      Delete

Post a Comment