无需浏览器的 Selen 测试
我使用 Selenium RC 进行测试。现在要执行负载测试,我想运行并行测试用例。 有没有什么方法可以在不打开浏览器的情况下运行它们?
I use Selenium RC for testing. Now to perform a load test, I want to run parallel test cases.
Is there any way to run them without opening a browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
Chrome 现在有无头模式:
Chrome now has a headless mode:
由于 PhantomJS 已被弃用,因此使用 Firefox 的无头版本将是一个可行的选择。
Since PhantomJS has been deprecated, using headless versions of Firefox would be a viable option.
试试这个代码:
Try this code:
在 Centos 上进行设置(以 root 身份进行所有安装)
安装 pip 下载 https://bootstrap.pypa .io/get-pip.py
安装selenium
如果您的系统上有 pip,您可以简单地安装或升级 Python 绑定:
或者,您可以从 PyPI 下载源代码发行版(例如 selenium-2.53.1.tar.gz),取消存档,然后运行:
安装程序: pyvirtualdisplay
然后修改你的脚本并得到这个。
To set up on Centos (do all installation as root)
Install pip Download https://bootstrap.pypa.io/get-pip.py
Installing selenium
If you have pip on your system, you can simply install or upgrade the Python bindings:
Alternately, you can download the source distribution from PyPI (e.g. selenium-2.53.1.tar.gz), unarchive it, and run:
install the program: pyvirtualdisplay
Then modify your script and get this.
你可以无头运行Selenium,看看这个问题/答案: Is it possible to hide Selenium RC 中的浏览器?
特别是对于性能负载测试,您应该看看
Apache JMeter。
You can run Selenium headless, take a look at this question/answer: Is it possible to hide the browser in Selenium RC?
Especially for performance load tests, you should have a look at
Apache JMeter.
始终遵循文档。这是 selenium doc 所说的内容。它提供了一个独立jar。
下载独立的 jar。并使用命令运行它
现在您将看到一个独立服务器已启动。
现在像下面一样设置你的网络驱动程序,其余部分将保持原样。
摘要代码如下。
Always follow the Documentation. Here is what selenium doc says. It provide a standalone jar.
Download the standalone jar. And run it with command
Now you will see a stanalone server started.
Now set up your webdriver like below and rest part will be as it is.
Summary code will be like.
这是可能的,但不能使用标准的 firefox 驱动程序/chrome/等。
您需要安装 PhantomJS。只需将您的 WebDriver 分配给 phantomJS 驱动程序的实例:
如果您现在运行代码,则不会打开任何浏览器窗口。
It is possible, but not with the standard firefox driver / chrome / etc.
You would need to install PhantomJS. Just assign your WebDriver to an instance of phantomJS driver:
If you run your code now, no browser window will be opened.
您可以简单地传递一个“headless”参数来测试 selenium,而无需打开浏览器。
该代码片段将为您提供您想要的内容。
You can simply pass an argument "headless" to test selenium without opening the browser.
This code snippet will provide you exactly what you want.
如果您不想打开网络浏览器,可以导入
Options
。然后在代码中:
并继续程序的其余部分。
You can import
Options
if you don't want to open a web browser.Then in the code:
And continue with the rest of the program.
要求:
从下面的链接下载 chrome 驱动程序二进制文件并粘贴到驱动程序目录中: https://sites.google.com/a/chromium.org/chromedriver/downloads" rel="nofollow noreferrer">https:// /sites.google.com/a/chromium.org/chromedriver/downloads
代码:
requirements:
download chrome driver binary from below link and paste into drivers directory: https://sites.google.com/a/chromium.org/chromedriver/downloads
code: