I'm currently looking for an element in the following HTML structure:
<first-name-grid>
<div> some text .. </div>
</first-name-grid>
Is there a CSS locator equivalent to this Xpath method?
let firstNameCssLocator : string = `*[id^='first-name'], *[class*='first-name']`;