gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-30 01:09:03 25 4
gpt4 key购买 nike

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

有什么办法吗

我有一些建议:模拟键盘敲击并使用 Tab 键在字段间移动,(如何操作)。

编辑

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

最佳答案

如果你想提交一个表单你勾选这个

     // 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。

希望对你有帮助

关于c# - 使用 WebBrowser WPF 控件以编程方式填写一些 Web 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7860843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com