使用 WebBrowser WPF 控件以编程方式填写一些 Web 表单

发布于 2024-12-11 06:23:55 字数 212 浏览 0 评论 0原文

我需要在我的 WPF 应用程序中的某个网页中预填写一些表单(该网页位于外部网站中),我正在使用 WPF WebBrowser 控件。

有没有什么办法可以做到。

我有一些建议:模拟键盘按键并使用 Tab 键在字段中移动(如何执行此操作)。

编辑

所需的形式非常复杂,元素的名称是动态的,但它们始终保持相同的顺序。

I need to pre-fill some form in some web page within my WPF app (The web page is in an external website), i am using WPF WebBrowser control.

Is there are some way to do it.

I have some suggestion: emulating keyboard strocks and use tab key to move through fields, (How to do this).

EDIT

The desired form is so sophisticated and the names of the elements are dynamic, but they are always in the same order.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱武穆 2024-12-18 06:23:55

如果您想提交表单,请检查

     // get the document
     mshtml.IHTMLDocument2 doc = ((mshtml.HTMLDocumentClass)webBrowser1.Document);

     // set a variable
     ((mshtml.IHTMLElement)doc.all.item("q")).setAttribute("value", "my input...");

     // click a button
    ((mshtml.HTMLInputElement)doc.all.item("btnI")).click();

命名空间 mshtml 位于 Microsoft.mshtml 程序集中。

只需添加引用 Microsoft.mshtml 即可。

希望这有帮助

if you want to submit a form you check this

     // get the document
     mshtml.IHTMLDocument2 doc = ((mshtml.HTMLDocumentClass)webBrowser1.Document);

     // set a variable
     ((mshtml.IHTMLElement)doc.all.item("q")).setAttribute("value", "my input...");

     // click a button
    ((mshtml.HTMLInputElement)doc.all.item("btnI")).click();

the namespace mshtml is located in Microsoft.mshtml Assembly.

Just add reference Microsoft.mshtml.

hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文