This is the link I want to scrape:
The "English Version" tab is at the upper right hand corner in order to show the English version of the web page.
There is a button I have to press in order to read the funds information on the web page.
<div onclick="AgreeClick()" style="width:200px; padding:8px; border:1px black solid; background-color:#cccccc; cursor:pointer;">Confirmed</div>
And the function of AgreeClick is:
| function AgreeClick() { |
| var cookieKey = "ListFundShowDisclaimer"; |
| SetCookie(cookieKey, "true", null); |
| Get("disclaimerDiv").style.display = "none"; |
| Get("blankDiv").style.display = "none"; |
| Get("screenDiv").style.display = "none"; |
| //Get("contentTable").style.display = "block"; |
| ShowDropDown(); |
How do I overcome this onclick="AgreeClick()" function to scrape the web page?