I try to scrape an article that has several formattings, subheadings, bulleted lists, bold, italic, etc...
When using text selector, the data from the CSV shows the text without any formattings.
How can I solve this issue?
Thanks
I try to scrape an article that has several formattings, subheadings, bulleted lists, bold, italic, etc...
When using text selector, the data from the CSV shows the text without any formattings.
How can I solve this issue?
Thanks
you can try to select separately each type of formatted data and create a separate selector for each of them... or you can grab as HTML and try to post-process this data as you wish...
yes, a html scraping would be a good idea. I can post process that. thanks