Search code examples
typescriptcss-selectorsplaywrightplaywright-java

css selector for dynamic MuiButton-label


I am trying to find a selector for this date element, it is found as MuiButton-label but the date text is dynamic, I can locate using the xpath in the playwright code but looking for a way to locate it using a css selector. Appreciate your time and help.

enter image description here

with .MuiButton-label class selector it narrows down to 4 elements, however the text cannot be sued to pinpoint to date as it would change I am looking for a way other than regex : enter image description here


Solution

  • could locate the element with this selector

    button >> nth=3>>span>span:nth-child(2)