HTML selector returns null

I have a a HTML selector grabbing a block of content. It works fine in preview, I can see the correct markup returned on various pages. But when I export the data that field returns null

{"_id":"properties","startUrl":["https://www.signature.co.nz/house-land","https://www.signature.co.nz/house-land?page=2","https://www.signature.co.nz/house-land?page=3"],"selectors":[{"delay":0,"id":"links","multiple":true,"parentSelectors":["_root"],"selector":".col-md-4 a","type":"SelectorLink"},{"delay":0,"id":"headline","multiple":false,"parentSelectors":["links"],"regex":"","selector":"div.infopanel:nth-of-type(2) h2","type":"SelectorText"},{"delay":0,"id":"beds","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(1) sup","type":"SelectorText"},{"delay":0,"id":"bathrroms","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(2) sup","type":"SelectorText"},{"delay":0,"id":"receptions","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(3) sup","type":"SelectorText"},{"delay":0,"id":"parking","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(4) sup","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["links"],"regex":"","selector":".col-md-8 p:nth-of-type(1) span","type":"SelectorText"},{"delay":0,"id":"size","multiple":false,"parentSelectors":["links"],"regex":"","selector":"p[_ngcontent-serverapp-c5]:nth-of-type(3)","type":"SelectorText"},{"delay":0,"extractAttribute":"style","id":"coverimage","multiple":false,"parentSelectors":["links"],"selector":".ngx-gallery-active","type":"SelectorElementAttribute"},{"delay":0,"id":"summary","multiple":false,"parentSelectors":["links"],"regex":"","selector":"#description div p[_ngcontent-serverapp-c27]","type":"SelectorHTML"},{"delay":0,"extractAttribute":"style","id":"gallery","multiple":true,"parentSelectors":["links"],"selector":".ngx-gallery-thumbnail","type":"SelectorElementAttribute"},{"delay":0,"id":"highlights","multiple":true,"parentSelectors":["links"],"regex":"","selector":".card-body li","type":"SelectorText"},{"delay":0,"extractAttribute":"style","id":"floorplan","multiple":false,"parentSelectors":["links"],"selector":".infopanel .col-md-12 p .ngx-gallery-active","type":"SelectorElementAttribute"},{"delay":0,"id":"address","multiple":false,"parentSelectors":["links"],"regex":"","selector":".col-md-12.infopanel p[_ngcontent-serverapp-c5]","type":"SelectorText"},{"delay":0,"id":"showhomes","multiple":true,"parentSelectors":["links"],"regex":"","selector":"div.active:nth-of-type(n+4) h5","type":"SelectorText"},{"delay":0,"extractAttribute":"href","id":"consultant","multiple":false,"parentSelectors":["links"],"selector":"a.greenlinksmall:nth-of-type(1)","type":"SelectorElementAttribute"},{"delay":0,"extractAttribute":"href","id":"franchise","multiple":false,"parentSelectors":["links"],"selector":"a.greenlinksmall:nth-of-type(4)","type":"SelectorElementAttribute"},{"delay":0,"id":"plan","multiple":false,"parentSelectors":["links"],"regex":"","selector":"h2.float-left","type":"SelectorText"}]}

@codycustard Hello. It looks like this selector is valid only for some of the pages, therefore you could just use #description div > p instead.

Also, you should replace the selectors with the 'Multiple' option checked using the 'Grouped' selector, otherwise the final data will be extracted in a scattered manner.

https://www.webscraper.io/how-to-video/group-selector
https://www.webscraper.io/documentation/selectors/grouped-selector

Hope it helps.