尝试在我从webBrowser加载的certin网站上的文本框中键入文本。
尝试使用HTMLElement,但它无法识别,因为它来自system.windows.FORMS。
关于如何解决这个问题的任何想法?
示例:
browser.Navigate(new URI("http://www.google.com"));
// Here get the textbox that we all type our text to search (the search textbox)
//type text inside it.
提前感谢。
答案 0 :(得分:0)
你必须调用一些javascript。例如。获得头衔:
How can I get the page title in WebBrowser control?
所以,browser.InvokeScript(“eval”,“document.getElementById('inputbox')。text ='INPUT'”);
(javascript未经过测试)。