我们有很多用Typescript编写的UI自动化脚本,我们将Protractor与Jasmine测试框架结合使用来运行它们。它们工作得很好,现在我们想用jMeter进行负载测试。
是否可以将这些UI测试挂接到jMeter中,而不是再次单独记录相同的流?
我已经阅读到Loadrunner允许使用来自UI自动化的winrunner脚本。我想对UI测试和jMeter做类似的事情。可行吗?
答案 0 :(得分:0)
您可以使用JMeter的HTTP(S) Test Script Recorder来记录您的量角器测试,如下所示:
配置量角器测试以使用JMeter's HTTP(S) Test Script Recorder as the proxy
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
capabilities: {
browserName: 'firefox',
proxy: {
proxyType: 'manual',
httpProxy: 'localhost:8888',
sslProxy: 'localhost:8888'
}
}
framework: 'jasmine',
//etc
运行量角器测试
如果要使用BlazeMeter进行记录-省略步骤1,并在步骤2中使用BlazeMeter Proxy Recorder的主机名和端口