postman-to-k6 icon indicating copy to clipboard operation
postman-to-k6 copied to clipboard

Converts Postman collections to k6 script code

Results 21 postman-to-k6 issues
Sort by recently updated
recently updated
newest added

``` { "name": "xxx", "request": { "method": "POST", "header": [], "body": { "mode": "formdata", "formdata": [ { "key": "file", "description": "required", "type": "file", "src": [] } ] }, "url": {...

bug
Investigate

Hi, I am using command to convert postman collection with global variable file as `postman-to-k6 collection.json --global workspace.postman_globals.json -o k6-postman.js` but getting this "To convert this collection provide OAuth credentials....

Does this library support auth code flow with pkce? I'm getting generated tests that look like this: ```javascript postman[Symbol.for("define")]({ name: "admin user", id: "6a08afa4-c3ee-4f6b-a2cf-549a12ef119e", method: "GET", address: "{{mde-base-url}}/admin/user", post(response) {...

Hi! First of all - thanks for you work! I have a problem and I hope you can help me. I can't understand how I can repeat a request depending...

I converted a postman collection to K6 but I cannot properly run it. After analysing the HTTP requests with Fiddler I noticed that some requests are wrongly reusing headers from...

is it possible to convert 1 postman collections to multi file script k6? eg : i have 1 postman collection with 3 endpoint, when i run postman-to-k6 collection.json -so its...

We have the following logic in lib\auth\apikey.js ``` const aid = require('../aid'); class ApiKeyAuth { constructor(settings) { const params = settings.parameters(); const key = params.get('key'); const value = aid.evalString(params.get('value')); if...

bug
question/validate
Investigate

I get this when I run it: ``` $ postman-to-k6 api.postman.json Form item missing type (file) ``` NodeJS v16.18.1 Ubuntu 20.04.4 LTS

is it possible to convert 2 postman collections at once..? for eg: is it possible to do something like ` postman-to-k6 collection1.json collection2.json -o k6-script.js` like this..? if not is...

When the postman-to-k6 library was incubated, [Ava](https://github.com/avajs/ava) was a handy and easy to use testing framework. The version used in the postman-to-k6 library is out-dated (and contains security issues) and...

help wanted
dependencies