嘿,在 Windows 8 应用程序上,我想在 webviewer 中加载网页后自动单击超链接。超链接的代码如下所示:
<li class="first"><a class="user-signup ctools-bp-modal" href="http://webpage.com/register"> … </a></li>
该链接指向将在页面上打开的 json 文件。
现在我尝试通过使用两者来做到这document.getElementByClassName
一点document.getElementByClass
:
signupWebView.InvokeScript("eval", new string[] { string.Format("document.getElementByClassName('user-signup ctools-bp-modal').click();") });
我也试过.submit
有没有办法做到这一点?谢谢