
Press Ctrl+Shift+C (Windows, Linux) or Command+Option+C (macOS). Press Ctrl+Shift+J (Windows, Linux) or Command+Option+J (macOS). On the Microsoft Edge toolbar, select Settings and more ( ) > More tools > Developer tools. The previously used tool, or the Welcome tool. Press Ctrl+Shift+I (Windows, Linux) or Command+Option+I (macOS). The Elements tool, with the DOM tree expanded to show the right-clicked page element. Right-click any item on a webpage, and then select Inspect. Which tool is opened depends on how you open DevTools. In Microsoft Edge, you can open DevTools by using the mouse or keyboard, in any of the following ways. Use a development environment to sync changes in DevTools with the file system and from the web. Find memory problems and rendering issues with your web apps.įind accessibility, performance, compatibility, and security issues in your products, and use DevTools to fix the accessibility issues that are found. Inspect the network traffic and see the location of the problems.ĭebug your JavaScript using breakpoint debugging and with the live console. png file formats.Įmulate how your website behaves on different devices and simulate a mobile environment, complete with different network conditions. Inspect where the browser stored content to construct the webpage, including. Inspect, tweak, and change the styles of elements in the webpage using live tools with a visual interface. You can even edit source files and create website projects, all within the DevTools environment.

DevTools provides a powerful way to inspect and debug webpages and web apps. DevTools is a set of web development tools that appears next to a rendered webpage in the browser. You can find all saved requests in the Network Console panel.The Microsoft Edge browser comes with built-in web development tools, called Microsoft Edge DevTools.

#Command line equivalent to chrome network inspector code#
Right-click it and select Copy > Copy as cURL.Ī similar approach is to use the Copy as Fetch option, and then use the copied code from the Console panel.Find the request you want to test in the Network panel.You can copy any request from the Network panel as a cURL command, then paste it in your terminal, edit it to your liking, and execute it!

You can do this by changing your frontend code, and reloading the page, but DevTools can help you be faster by editing and resending those requests without making any frontend code changes. When you're investigating a bug where the backend you connect to doesn't respond with the right things it's useful to tweak the requests and try again quickly.
