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!


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -