I'm having a problem with using Html Agility Pack
to extract data from websites. The page source that loaded by Html Agility
is not the same as the source from View Page Source
menu in browser. Here is the difference I have:
View Page Source:
<td>
<span style="color:#158EF7; font-weight:bold">
ABCDEF
</span>
</td>
Source returned from Html Agility
<td>
<font face="Arial" color="#404040" size="2">
<span style="color:#158EF7; font-weight:bold">
ABCDEF
</span>
</font>
</td>
I don't know why it has this big difference. Maybe because of the javascript code or something else. But I don't care about it, I just want to get the exact source like the one I get from View Page Source
menu. How can I achieve that? Thanks for your help.