I'm trying to web scrape the table data of a website. It shows a nice table on its website but when I try to use postman to send a get request to this website, the table columns are missing(except two). when I check the exact < td > which was filled in the original html, I found that it has some javascript code. I am thinking that they must be executing that code before showing it in the page. For example, one of the value has this.
if(a==1){
if(b> 2) document.write("google");
else document.write("yahoo);
}
But I actually want the result. I'm using node-html-parser to get the data.