I'm clearing IE's cache programmatically using DeleteUrlCacheEntry()
and I would like to verify that I did it correctly.
Should I expect the Temporary Internet Files folder to be empty after clearing the cache? (it isn't)
If not then what is the simplest way to determine whether the browser is using its cache when accessing a site?
Clarification: Our app interacts with the browser, I wrote two features, delete cookies and clear cache. It's pretty simple to check the delete cookies feature, login to a site, delete cookies, refresh, you've been logged out. However now QA opened a bug about clear cache not having emptied the Temporary Internet Files directory. I want to direct them how to test the feature but would like to avoid using an HTTP sniffer (like Yuval suggested), is there a simpler way?