The 2nd marker is showing the CSS selector of the selected element. Additionally, it will auto-populate the CSS locator of the web element, which you have selected using the selector marked with “Marker 1.” The 3rd marker is showing the option of Copying the CSS selector to Clipboard. By using this, you can directly paste the CSS selector
4894
the reason why you can’t have a “parent of” selector is due to a restriction of CSS to use a once-over algorithm. When a browser parses css selectors, it can apply the styles to each element by iterating through each element exactly once. if parent selectors were allowed, the parser would need to travel back up the xml tree, which is