I am trying to web scrape a table in HTML using Cheerio- below is the particular HTML in question:
<tr>
<td class="n3">
Course / Speed
</td>
<td class="v3" id="spv0">145.5° / 0.0 kn</td>
</tr>
However, I noticed that instead of getting "145.5° / 0.0 kn", I instead get " ". Indeed, when I click on view page source, the td element has the empty space string instead of the actual numerical value I am looking for. Why is that happening, and how can I get Cheerio in NodeJS to fetch "145.5° / 0.0 kn" instead?