chrome clear cache extension code example

Example 1: chrome clear cache for one site

chrome://settings/siteData

Example 2: composer clear cache

$ composer clearcache

Example 3: chrome refresh cache

CTRL+F5 : to refresh the page by clearing GG chrome cache.

Example 4: 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;