Add the ability to configure element selection so that when an element is highlighted, instead of capturing its path, CSS selector, or other details, a specific attribute is captured — one that can be predefined in the settings.
For example, I mark all components with a unique attribute such as data-qa so that I can conveniently write tests and describe elements in a Page Object later. This means that every element I interact with through the browser developer console is already labeled.
I need the workflow to be as follows: I select an element, optionally add some text, and when I copy it, only the value of the data-qa attribute is saved to the clipboard — without any additional unnecessary information. Since this attribute is unique, it will be easy to locate the required component and perform further actions with it.
Add the ability to configure element selection so that when an element is highlighted, instead of capturing its path, CSS selector, or other details, a specific attribute is captured — one that can be predefined in the settings.
For example, I mark all components with a unique attribute such as
data-qaso that I can conveniently write tests and describe elements in a Page Object later. This means that every element I interact with through the browser developer console is already labeled.I need the workflow to be as follows: I select an element, optionally add some text, and when I copy it, only the value of the
data-qaattribute is saved to the clipboard — without any additional unnecessary information. Since this attribute is unique, it will be easy to locate the required component and perform further actions with it.