我想从邮差谷歌Chrome扩展POST数据。
我想用不同的数据提出10个请求,它应该是在同一时间。
在Postman中可以这样做吗?
如果是,谁能给我解释一下这是如何实现的?
我想从邮差谷歌Chrome扩展POST数据。
我想用不同的数据提出10个请求,它应该是在同一时间。
在Postman中可以这样做吗?
如果是,谁能给我解释一下这是如何实现的?
当前回答
Runner选项现在位于面板的右下方
其他回答
开多个邮差。它复制它并并发运行。
在一个文件夹中并行运行所有Collection:
'use strict';
global.Promise = require('bluebird');
const path = require('path');
const newman = Promise.promisifyAll(require('newman'));
const fs = Promise.promisifyAll(require('fs'));
const environment = 'postman_environment.json';
const FOLDER = path.join(__dirname, 'Collections_Folder');
let files = fs.readdirSync(FOLDER);
files = files.map(file=> path.join(FOLDER, file))
console.log(files);
Promise.map(files, file => {
return newman.runAsync({
collection: file, // your collection
environment: path.join(__dirname, environment), //your env
reporters: ['cli']
});
}, {
concurrency: 2
});
最简单的方法是得到=>谷歌Chrome“TALEND API TESTER” 去帮助+在创建场景中输入 …或者直接去这个链接=> https://help.talend.com/r/en-US/Cloud/api-tester-user-guide/creating-scenario
我能够同时发送几个POST API调用。
Postman不会这样做,但你可以在Bash中异步运行多个curl请求:
curl url1 & curl url2 & curl url3 & ...
记住在每个请求后添加&,这意味着请求应该作为异步作业运行。
但是邮差可以为您的请求生成卷曲片段:https://learning.getpostman.com/docs/postman/sending_api_requests/generate_code_snippets/
在postman的收集运行器中,您不能同时进行异步请求,因此改用Apache JMeter。它允许您添加多个线程并添加同步计时器