forked from grafana/har-to-k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.har
27 lines (27 loc) · 813 Bytes
/
params.har
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"log": {
"entries": [
{
"index": 0,
"request": {
"method": "POST",
"url": "http://test.loadimpact.com/path",
"httpVersion": "HTTP/1.1",
"postData": {
"mimeType": "application/x-www-form-urlencoded",
"params": [
{
"name": "login",
"value": "admin"
},
{
"name": "password",
"value": "123"
}
]
}
}
}
]
}
}