Web Developer Tools (DevTools)
🔗 Original page — Source of this material
Description
DevTools is a very powerful tool for working with HTML pages, analyzing requests, and debugging JavaScript.
Developer tools are available only for the Chrome engine.

How do you open the window?
You can open the window by clicking the corresponding button to the right of the address bar ❗→ browser ProjectMaker

What is it used for?
- Interacting with the DOM model of the page (finding, removing, or modifying elements)
- Analyzing the ❗→ requests made by the page
How to use
Inspect Button

Click this button and hover your mouse over any element in the browser window—the element will be instantly highlighted on the Elements tab.
Elements Tab

In this tab, you can analyze and modify the DOM of the current tab—change the HTML code of elements (remove or add attributes), or cut out portions of the elements.
Searching with XPath
You can use this window to test ❗→ XPath queries: open the Elements tab, press the Ctrl+F shortcut, and a search field will appear at the bottom of the window (1) (you can enter plain text, XPath, or CSS Selectors).
The matched elements will be highlighted immediately (2).

Console Tab
Here you can write and debug JavaScript code. All code runs in the context of the current tab, so all modules, libraries, and objects loaded on the current page are available here. Once the code is ready, you can run it using the ❗→ JavaScript Code action.
Network Tab

Here you will see all requests made when the page loads. This can be very helpful when creating your own ❗→ requests.
Useful Links
- Official documentation (in English)
- Overview of all Chrome DevTools developer tools (Habr)
- ❗→ Traffic window