Exclude Classes

I want to scrap the article text, but I want to exclude the text from some classes, like:

  • .wp-caption-text
  • .authority-box

It's possible to do that? I tried :not but its not working.

Url: https://petkeen.com/how-to-stop-dog-from-begging-for-food/

Sitemap:
{"_id":"petkeen","startUrl":["https://petkeen.com/blog-posts/page/1-10/"],"selectors":[{"delay":0,"id":"nome","multiple":true,"parentSelectors":["_root"],"selector":"a.card","type":"SelectorLink"},{"delay":0,"id":"titulo","multiple":false,"parentSelectors":["nome"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"text","multiple":false,"parentSelectors":["nome"],"regex":"","selector":".entry-content:not(.wp-caption-text)","type":"SelectorText"}]}

@deezywonder Hello, you can't exclude it like this, because the targeted selector - .entry-content is its parent.

Instead, you can use the ''Grouped'' selector .entry-content p

Example:

{"_id":"petkeen","startUrl":["https://petkeen.com/blog-posts/page/[1-10]/"],"selectors":[{"delay":0,"id":"nome","multiple":true,"parentSelectors":["_root"],"selector":"a.card","type":"SelectorLink"},{"delay":0,"id":"titulo","multiple":false,"parentSelectors":["nome"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"extractAttribute":"","id":"text","parentSelectors":["nome"],"selector":".entry-content p","type":"SelectorGroup"}]}

Thats what I thought. Using like that, don't exclude what I want.
But thanks anyway =)