Answers for "what does "clear-history" command do? clear history from web browser clear history from machine option 3 deletes the entries from the command history. do nothing"

4

how to clear browser history

ChromeDriver chromeDriver = new ChromeDriver();

    chromeDriver.manage().deleteAllCookies();
    chromeDriver.get("chrome://settings/clearBrowserData");
    chromeDriver.findElementByXPath("//settings-ui").sendKeys(Keys.ENTER);

    return chromeDriver;
Posted by: Guest on February-04-2021

Code answers related to "what does "clear-history" command do? clear history from web browser clear history from machine option 3 deletes the entries from the command history. do nothing"

Browse Popular Code Answers by Language