使用 WebBrowser WPF 控件以编程方式填写一些 Web 表单
我需要在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想提交表单,请检查
命名空间
mshtml
位于Microsoft.mshtml
程序集中。只需添加引用 Microsoft.mshtml 即可。
希望这有帮助
if you want to submit a form you check this
the namespace
mshtml
is located inMicrosoft.mshtml
Assembly.Just add reference Microsoft.mshtml.
hope this helps