使用TWebBrowser用Delphi填充网页

发布于 2024-12-02 21:32:27 字数 158 浏览 0 评论 0原文

我在 Vista 上使用 Delphi 7。到目前为止,我已经实现了一个简单的浏览器(使用 TWebBrowser),但我想在网页要求时自动输入信息。例如,我想告诉我的应用程序转到Google,检测搜索字段,输入搜索短语,然后单击搜索按钮,然后获取结果。

有人可以阐明这是如何完成的吗?

I use Delphi 7 on Vista. So far, I have implemented a simple browser (using TWebBrowser) but I would like to automatically enter information when the web page asks for it. For example, I want to tell my app to go to Google, detect the Search field, enter a search phrase, and then click the Search button and then get the result.

Can someone shed some light on how this is done?

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

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

发布评论

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

评论(2

睫毛溺水了 2024-12-09 21:32:27

您需要使用 DOM 来执行此操作。在 Delphi 设置中学习此内容的最佳在线资源位于 Brian Cryer 的地点。查看如何读取和写入表单元素

You need to use the DOM to do this. The best online resource for learning this in a Delphi setting is at Brian Cryer's site. Take a look at How to read and write form elements.

梦幻之岛 2024-12-09 21:32:27

在 google 实例中,您可以直接自己直接调用搜索 URL。

例如。此 URL 搜索“jam”

http://www.google.ie/search?q=jam&ie=UTF-8&oe=UTF-8&hl=en&client=safari

获取代码以更改搜索字符串的 jam 并转到该 URL。我希望这就是您正在寻找的。

In the google instance you could simply call the search URL directly yourself.

Eg. This URL searches for 'jam'

http://www.google.ie/search?q=jam&ie=UTF-8&oe=UTF-8&hl=en&client=safari

Get your code to change jam for your search string and go to that URL. I hope this is what you are looking for.

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