Rasmus Christensen
Rasmus Christensen

Reputation: 8531

Developer tools in windows edge browse localstorage

I'm trying to use the new windows Edge browser for my web development.But just can't find any way to browse localstorage, cookies etc. inside the developer tools. How do I view them?

Best regards

Upvotes: 14

Views: 11036

Answers (3)

mikemaccana
mikemaccana

Reputation: 123188

Storage is now in the Application tab.

enter image description here

Upvotes: 0

Rami Sarieddine
Rami Sarieddine

Reputation: 5432

you can check localStorage object in the Console

  1. Open F12 Developer Tools (press F12)
  2. Go to Console tab
  3. type localStorage in the input and click run/press enter. check the screenshotenter image description here

Upvotes: 9

Mikko Ropanen
Mikko Ropanen

Reputation: 182

They are here: Debugger tab -> Folder icon on the left, under the "play" icon.

enter image description here

Upvotes: 12

Related Questions