Lately I'm trying to scrap some data from the web page using C#.
My problem is, that in C# when I'm using WebBrowser
object to manipulate with the web page, when I navigate to my web page in body I only get:
<body>
<script language="javascript" src="com.astron.kapar.WebClient/com.astron.kapar.WebClient.nocache.js"></script>
</body>
But if you go on actual web page https://kapalk1.mavir.hu/kapar/lt-publication.jsp?locale=en_GB and look the source you see there is some tables in body probably because browser loads scripts.
My question is, What is the way in C# to manipulate or deal with that kind of web page? For example to choose some dates and get some data? Is there any good library?
Sorry for bad English.