0

我用 python 编写了一个程序,该程序使用 selenium 来自动化 Web 浏览器(firefox)。它运行良好,但我见过自动浏览网页的程序,但它似乎在某种窗口或框架(iframe?)中,而不是在浏览器中。你怎么做到这一点?是不是因为窗口只关注一个特定的网站而更快?

谢谢。

编辑:

我不知道...我下载了一个程序并运行它,它为我打开了一个窗口并在一个特定的网站上自动浏览互联网。

这里是下载: http ://bankhead11.webs.com/downloads.htm 是第一个。(它是一个旧程序。人们报告说它在几年前就停止工作了,因为这个人停止更新它。但是很多人用它在网站上“自动出价”以赚钱。我不想解释.. .但目前我想做两个程序。一个会自动为我实时出价,另一个将使用google api并将数据提交到网站)

4

1 回答 1

0

Performing automation in browser is the best way to test the application, instead of some app testing on some different window/Frame. You can test the functionality but that testing will be incomplete until you test on Actual browser.

If you are looking for fastest way of browser automation, selenium do provide you with an Option of "HTMLUNIT" driver (No GUI), it's much more faster than any browser automation.

check the following link for more details

http://seleniumhq.org/docs/03_webdriver.html#selenium-webdriver-s-drivers

Hope this helps you ..All the best:)

于 2012-12-18T12:25:34.840 回答