使用TWebBrowser用Delphi填充网页
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 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.
在 google 实例中,您可以直接自己直接调用搜索 URL。
例如。此 URL 搜索“jam”
获取代码以更改搜索字符串的 jam 并转到该 URL。我希望这就是您正在寻找的。
In the google instance you could simply call the search URL directly yourself.
Eg. This URL searches for 'jam'
Get your code to change jam for your search string and go to that URL. I hope this is what you are looking for.