我想从邮差谷歌Chrome扩展POST数据。
我想用不同的数据提出10个请求,它应该是在同一时间。
在Postman中可以这样做吗?
如果是,谁能给我解释一下这是如何实现的?
我想从邮差谷歌Chrome扩展POST数据。
我想用不同的数据提出10个请求,它应该是在同一时间。
在Postman中可以这样做吗?
如果是,谁能给我解释一下这是如何实现的?
当前回答
您可以运行postman Runner的多个实例,并在每个实例中使用不同的数据文件运行相同的收集。
其他回答
在postman的收集运行器中,您不能同时进行异步请求,因此改用Apache JMeter。它允许您添加多个线程并添加同步计时器
我猜在postman中没有运行并发测试的特性。
如果我是你,我会考虑Apache jMeter,它正是用于这种场景的。
关于邮差,唯一能或多或少满足你需求的是-邮差跑手。 在这里你可以指定细节:
迭代次数, 上传包含不同测试运行数据的CSV文件等。
这些运行不是并发的,而是连续的。
请考虑jMeter(您可能会喜欢它)。
您可以运行postman Runner的多个实例,并在每个实例中使用不同的数据文件运行相同的收集。
我不知道这个问题是否还有意义,但是现在在《邮差》中存在这样的可能性。他们几个月前加的。
你所需要的只是创建一个简单的.js文件,并通过node.js运行它。它是这样的:
var path = require('path'),
async = require('async'), //https://www.npmjs.com/package/async
newman = require('newman'),
parametersForTestRun = {
collection: path.join(__dirname, 'postman_collection.json'), // your collection
environment: path.join(__dirname, 'postman_environment.json'), //your env
};
parallelCollectionRun = function(done) {
newman.run(parametersForTestRun, done);
};
// Runs the Postman sample collection thrice, in parallel.
async.parallel([
parallelCollectionRun,
parallelCollectionRun,
parallelCollectionRun
],
function(err, results) {
err && console.error(err);
results.forEach(function(result) {
var failures = result.run.failures;
console.info(failures.length ? JSON.stringify(failures.failures, null, 2) :
`${result.collection.name} ran successfully.`);
});
});
然后运行这个.js文件(在cmd中'node fileName.js')。
详情请点击这里
Postman不会这样做,但你可以在Bash中异步运行多个curl请求:
curl url1 & curl url2 & curl url3 & ...
记住在每个请求后添加&,这意味着请求应该作为异步作业运行。
但是邮差可以为您的请求生成卷曲片段:https://learning.getpostman.com/docs/postman/sending_api_requests/generate_code_snippets/