使用Windows Phone 8从Web浏览器内的网站在文本框中键入文本

时间:2013-03-12 08:50:02

标签: windows-phone-7 windows-phone-8 windows-phone

尝试在我从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.

提前感谢。

1 个答案:

答案 0 :(得分:0)

你必须调用一些javascript。例如。获得头衔:

How can I get the page title in WebBrowser control?

所以,browser.InvokeScript(“eval”,“document.getElementById('inputbox')。text ='INPUT'”);

(javascript未经过测试)。