I'm looking for how to view the cookies set using developer tools in IE11. I see an option in network profiling to view cookies being sent back and forth, but this is not really the same thing. It is cumbersome to use since it's per request. Surely there must be a way to view all cookies like you can in IE10.
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- Is TWebBrowser dependant on IE version?
- Multiple Django sites on the same domain - CSRF fa
- Save html in cookie
- IE dropdown z-index bug
相关文章
I think I found what you are looking for since I was also looking for it.
You have to follow Pawel's steps and then go to the key that is "Cookie". This will open a submenu with all the cookies and it specifies their name, value, domain, etc...
Respectively the values are: Key, Value, Expiration Date, Domain, Path.
This shows all the keys for this domain.
So again to get there:
Not quite an answer (not “using Developer Tools”), but there is a third-party tool for it: IECookiesView from NirSoft. Hope this helps someone.
image taken from Softpedia
Network tab -> then click "Go to Detailed View" -> here you are
Update 2018 for Microsoft Edge Developer Tools
The Dev Tools in Edge finally added support for managing and browsing cookies.
Debugger Panel > Cookies Manager
Network Panel > Request Details > Cookies
The benefit, of course, to the debugger tab is you don't have to hunt and peck for individual cookies across multiple different and historical requests.
How about typing document.cookie into the console? It just shows the values, but it's something.