Selenium 测试和持续集成(在后台运行浏览器)
我们有用于持续集成的无 Xserver CentOS 系统。所以没有用户界面。
我想在其上运行硒测试用例。我正在使用新的 Alpha 版本的 Selenium2,它集成了 WebDriver。它自行启动和结束浏览器。现在,我如何在后台启动它? Internet Explorer 是否可以实现类似的功能?
我能够在本地计算机上正确运行。但它会打开 Firefox UI。
We have Xserver-less CentOS system for continuous integration. So no UI.
I want to run selenium test cases on it. I am using new Alpha version of Selenium2 which has WebDriver integration. It starts and ends browser by its own. Now, How do I start that in background? Something similar is possible with Internet Explorer?
I am able to run correctly on local machine. But it opens Firefox UI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您能够运行虚拟帧缓冲区吗?这样,即使没有实际的屏幕,所有 GUI 程序都可以相信有图形发生。您可能希望搜索“无头”一词。 一个例子。
另一种可能是使用 Celerity - 一个基于 ruby 的“无头浏览器”。它使用 Watir 接口(最初是 selenium 的竞争对手),据我所知,它正在与 webdriver 合并。
Are you able to run a virtual frame buffer? That way, all the GUI programs can believe there's graphics happening, even if there's no actual screen. You may wish to search for the term "headless". One example.
Another possibility may be to use Celerity - a ruby-based "headless browser". It uses the Watir interface (originally a competitor to selenium), which I understand to be merging with webdriver.