clear all cache chrome code example
Example 1: chrome refresh cache
CTRL+F5 : to refresh the page by clearing GG chrome cache.
Example 2: how to clear cache chrome
ChromeDriver chromeDriver = new ChromeDriver();
chromeDriver.manage().deleteAllCookies();
chromeDriver.get("chrome://settings/clearBrowserData");
chromeDriver.findElementByXPath("//settings-ui").sendKeys(Keys.ENTER);
return chromeDriver;