How to clear browser cache automatically in Selenium WebDriver?

后端 未结 5 1356
别那么骄傲
别那么骄傲 2021-01-17 17:30

How to clear browser cache before every test run? I tried with driver.manage().deleteAllCookies(); in setUp method after creating the driver instan

5条回答
  •  既然无缘
    2021-01-17 18:07

    IE Browser clears the cache for each element after every page load

    ieCapabilities.setCapability(InternetExplorerDriver.ENABLE_ELEMENT_CACHE_CLEANUP, true);
    

    This will do session clean up:

    ieCapabilities.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
    

提交回复
热议问题