How to clean cache in Eclipse Neon v 4.6.0? I have an automation test with selenium. The test is passed bug there sometimes the the test is failed and it looks like it is stuck. I want to clean the cache.
Asked
Active
Viewed 851 times
2 Answers
0
The Question doesn't mentions about which cache
you are trying to clean up.
As you mentioned cache in Eclipse Neon v 4.6.0?
to do that you have to execute the following steps:
- On Eclipse, Click on
Project
->Build Automatically
(keep the option selected) - Again, on Eclipse, Click on
Project
->Clean
, clickClean all projects
& clickOK
Incase you are trying to clean the Browser cache
, you don't need to worry for that as, whenever you do:
WebDriver driver=new FirefoxDriver();
A new Mozilla Profile
is created on the fly which doesn't have anything stored in the cache.

undetected Selenium
- 183,867
- 41
- 278
- 352
0
You can use like this by referencing this answer
C:\eclipse\eclipse.exe -vm "C:\Program Files\Java\jdk1.6.0_24\bin" -clean

iamsankalp89
- 4,607
- 2
- 15
- 36