我有一个可以正常工作的 html 应用程序我必须从 ac# 程序运行这个程序并从我的 c# 程序填充它的 html 输入文本标签,然后按 html 按钮我不知道该怎么做你能不能帮我?
问问题
234 次
1 回答
0
如果我理解正确,您需要使用 WebBrowser 控件并导航到您的站点(使用WebBrowser.Navigate()
方法)。然后(导航完成后)使用代码填充输入并单击按钮。
var document = yourWebBrowser.Document;
var searchField = document.GetElementById("IdOfTheInputField");
searchField.SetAttribute("value", "TextToWrite");
document.GetElementById("IdOfSubmitButton").InvokeMember("click");
于 2012-11-10T21:46:41.990 回答