使用 Excel VBA 控制 Web 浏览器
我被分配了自动化基于 Web 的任务(针对 HTTPS 网站)的任务。用户当前正在用数据填充Excel工作表,他们现在希望以一种直接控制浏览器并填充数据的方式自动化Excel。
我发现 iMacros Scripting 版本作为执行此操作的可能解决方案,我想知道是否有任何其他类似的工具可用于控制浏览器和填充数据。
我还查看了 Selenium 客户端驱动程序,但我不确定如何在 Excel VBA 中使用它。
任何帮助将不胜感激。
谢谢,
I have been assigned the task of automating a web based task ( for a HTTPS website). The users currently are filling in the Excel sheet with the data, they now want to automate excel in such a way that it directly controls the browser and fills in the data.
I found the iMacros Scripting edition as a possible solution for doing this, I wanted to know if there are any other similar tools which can be used for controlling the browser and filling in data.
I also had a look at the Selenium Client Driver, but I am not sure on how to use it in Excel VBA.
Any help would be appreciated.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过安装此处提供的工具来从 Visual Basic 编辑器中使用 Selenium:
http://code.google .com/p/selenium-vba/
有一个 Selenium IDE 插件可以自动在 VBA 中录制脚本,还有一个安装包可以在 Visual Basic 编辑器中运行 Selenium 命令。
以下示例启动 Firefox,打开第一列中的链接,将标题与第二列进行比较,并将结果放入第三列中。
使用的数据位于工作表中名为“MyValues”的范围内。
You can use Selenium from Visual Basic Editor by installing the tools provided here :
http://code.google.com/p/selenium-vba/
There is a Selenium IDE plugin to automatically record a script in VBA and an installation package to run Selenium command in Visual Basic Editor.
The following example starts firefox, opens links in the 1st column, compares the title with the 2nd column and past the result in the 3rd column.
Used data are in a sheet, in a range named "MyValues".
此示例打开 stackoverflow 站点并显示 IE
[] 的
This sample open stackoverflow site an show IE
[]'s
我使用此代码从 Excel 读取数据并将其传递给 selenium 来执行“单击、选择、关闭等”等任务,并且您也可以将数据写入 Excel。
这是Python中的,我不知道VB,但我知道perl,如果你希望我也能在perl中给出相同的代码。
我希望这可能有帮助。
I use this code for reading data from excel and passin it to selenium for to do task like "click, select, close etc" and also you can write data to excel.
This is in python i don know VB and i do know perl if u wish i'll give same code in perl too.
i hop this may help.