Issue customizing the Extract Table Data activity

So ive posted the following xaml custom code to scrape the data from a site.
- I first pull the text for each p tag within the faq answers div for the first column
- then I pull the url which rests in the ‘a’ tag to populate the second column.

No problems so far.
But the third column, when I try to pull the entire text from the p tag, which encompasses the “posted date” string, it doesn’t seem to scrape from all the p-tags, like the prior extractions. Only about 25% of the rows are populated for the third column

<extract> 
            <column name='file' attr='fulltext'> 
                 <webctrl tag='div' class='faq-answers' /> 
                 <webctrl tag='p' /> 
                 <webctrl tag='STRONG' /> 
            </column> 
            <column name='url' attr='href'> 
                  <webctrl tag='div' class='faq-answers' /> 
                  <webctrl tag='p' /> 
                  <webctrl tag='a' idx='1' /> 
            </column> 
           <column name='posted_date' attr='text'>
                 <webctrl tag='div' class='faq-answers' /> 
                 <webctrl tag='p' /> 
           </column> 
</extract>