javascript - Bypass Anti-ClickJack in C# WebBrowser Control? -
in application need invoke click button in webbrowser (httprequests not suffice in situation) , unable invoke clicks button. after further digging, found site has piece of code:
<script type="text/javascript"> if (self === top) { var anticlickjack = document.getelementbyid("anticlickjack"); anticlickjack.parentnode.removechild(anticlickjack); } else { top.location = self.location; } </script>
i wondering if possible bypass anticlickjack button can pressed normal.
thanks!