Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of contents

Expand
titleClick here to expand the table of contents
Table of Contents
exclude^Оглавление$

...

Description

DevTools is a very powerful tool for working with HTML pages, analyzing requests, debugging JavaScript.

Note

Web developer tools are only available for the Chrome engine.

...

How to open a window?

You can display the window by clicking on the corresponding button to the right of the address bar of the ProjectMaker browser

...

What is it used for?

  • Interaction with DOM page model (search for elements, deletion, modification)

  • Analysis of the requests made by the page

...

How to use

...

This window can be used to test XPath queries: open the Elements tab, press the key combination Ctrl + F, a field for entering a search phrase (1) will appear at the bottom of the window (you can enter simple text, XPath, CSS Selectors).
Found items will immediately be highlighted (2).

...

Here you can write and debug JavaScript code. All code is executed in the context of the current tab, i.e. all modules, libraries, objects that are loaded on the current page are available here.
When the code is ready, you can run it using the JavaScript Code action

Network tab

...

All requests that were sent when loading this page will be displayed here. This can be very helpful when writing your own custom queries.

...