Scraping more than i need! PLEASE HELP

Describe the problem.
Ok, this is my first post and i will try to explain as well as i can, im trying to scrape this page https://www.previewsworld.com/Catalog?cat=1 and then all the products page as per my screen shot https://nimb.ws/CrjMao, things do go quite well however when it grabs the text description https://nimb.ws/SmgeGX it actually scrapped all the div text, looking at the code, the inned text is inside the another div, i can actually scrape all the class inside that div individually but not the text, so not only i get the product code, artist, price etc as individual selectors but i also get the description div text all toguether with thos eselectors and i want just the description text. I hope i have explained thi sok, as yo ucan see english is not my first language :slight_smile: many thanks in advance.

Url: http://example.com

Sitemap:
{id:"sitemap code"}

Ya I see what is the issue; you're trying to grab the synopsis text from element div.Text but it contains other elements within. I don't know enough CSS to only grab the text and exclude the other elements (probably do-able).

One possible solution is to grab div.Text as HTML (Type:HTML) and pick out the synopsis with a regex. The example below illustrates, and I used this regex:
 .+\n

You would need to do some post-processing to remove the   bits but it is a straightforward search n replace with blank.

{"_id":"previewsworld_single_page","startUrl":["https://www.previewsworld.com/Catalog/SEP190208"],"selectors":[{"id":"title","type":"SelectorText","parentSelectors":["_root"],"selector":"div.Title","multiple":false,"regex":"","delay":0},{"id":"publisher","type":"SelectorText","parentSelectors":["_root"],"selector":"div.Publisher","multiple":false,"regex":"","delay":0},{"id":"item code","type":"SelectorText","parentSelectors":["_root"],"selector":"div.ItemCode","multiple":false,"regex":"","delay":0},{"id":"creators","type":"SelectorText","parentSelectors":["_root"],"selector":"div.Creators","multiple":false,"regex":"","delay":0},{"id":"release date","type":"SelectorText","parentSelectors":["_root"],"selector":"div.ReleaseDate","multiple":false,"regex":"","delay":0},{"id":"synopsis","type":"SelectorHTML","parentSelectors":["_root"],"selector":"div.Text","multiple":false,"regex":" .+\\n","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["_root"],"selector":"div.SRP","multiple":false,"regex":"","delay":0}]}