c# - Scraping data, loading scripts -


lately i'm trying scrap data web page using c#. problem is, in c# when i'm using webbrowser object manipulate web page, when navigate web page in body get:

<body>     <script language="javascript"   src="com.astron.kapar.webclient/com.astron.kapar.webclient.nocache.js"></script> </body> 

but if go on actual web page https://kapalk1.mavir.hu/kapar/lt-publication.jsp?locale=en_gb , source see there tables in body because browser loads scripts.

my question is, way in c# manipulate or deal kind of web page? example choose dates , data? there library?

sorry bad english.

you need use either headless ie, or headless webkit.

these questions might relevant.

headless browser c# (.net)?

c# headless browser javascript support crawler


Comments