Hi, the following selection config has been working for the most part, but the CSS element that is selected by the “aria-describedby” attribute has a sub-element that I would like to exclude from the selection. The sub-element has an attribute “aria-label” with value starting with "Comment by " followed by some more text. For example: ‘aria-label=“Comment by John Doe 6 days ago”’, where the name and time description often changes
Is there a way to exclude this particular sub-element? Thank you!
{
"selections": [
{
"frames": [
{
"index": 0,
"excludes": [],
"includes": [
{
"type": "css",
"expr": "[aria-describedby]",
"fields": [
{
"name": "text",
"type": "builtin"
},
{
"type": "attribute",
"name": "aria-describedby"
}
]
}
]
}
],
"dynamic": true,
"delay": 2
}
],
"ignoreEmptyText": true,
"includeStyle": false,
"dataAttr": "text"
}