我想从邮差谷歌Chrome扩展POST数据。

我想用不同的数据提出10个请求,它应该是在同一时间。

在Postman中可以这样做吗?

如果是,谁能给我解释一下这是如何实现的?


当前回答

您可以运行postman Runner的多个实例,并在每个实例中使用不同的数据文件运行相同的收集。

其他回答

您可以运行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
});

开多个邮差。它复制它并并发运行。

不确定人们是否还在寻找简单的解决方案,但您可以在Postman中运行“Collection Runner”的多个实例。只需创建一个带有一些请求的运行器,并多次单击“运行”按钮来调出多个实例。

最简单的方法是得到=>谷歌Chrome“TALEND API TESTER” 去帮助+在创建场景中输入 …或者直接去这个链接=> https://help.talend.com/r/en-US/Cloud/api-tester-user-guide/creating-scenario

我能够同时发送几个POST API调用。