Find elements by given selectors - they will be outlined in color and a information of selector will be visible above them
You can provide as much space separated selectors as you want or you can chain the selectors together.
Examples:
- `a .primary` will find all `<a>` elements and all elements that have .primary class
- `.primary.secondary` will find all elements that have both of the classes - notice that there is no space inbetween
Be careful when you select often used elements such as div - the reason is, we set it's position to relative to be able to place a tag on that item. In some cases the view may be broken as some divs might have had an absolute position.