我需要单击网站上的按钮。html中的按钮:
<input class="btn" type="submit" value="Войти" />
wp7 webBrowser不支持webBrowser.Document,所以我不能使用
foreach(HTMLElement html in webBrowser.Document.GetElementByTagName("input"))
{
if(html.GetAttribute("value) == "Войти")
html.InvokeMember("submit");
}
按钮也没有 id 或标签,所以我不能使用“getElementsById”或“getElementsByTag”