I have a Web Extraction that pulls data from a job posting site. It works for most of the text I need extracted, but on 10%-15% of the rows, it extracts some of the text and the rest it extracts in its source/HTML format, rendering it useless. I need it to only extract the text, not half text then the rest as HTML.
Here is an example of what the problem looks like:

this is the web extraction selector:

my CSS selectors are
html > body > div:eq(0) > div > div > div:eq(1) > div > div:eq(2) > div
div:eq(0) > div > label
div:eq(0) > div > div
I think it must be something with the selector, because the problem shows up in the selector tool:

I need help extracting only the text, not half the text, then some HTML code.
thanks!