Works local but not on ado #1352
ericfabiszewski
started this conversation in
Artillery
Replies: 1 comment 1 reply
-
hi @ericfabiszewski 👋 what was the issue? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am very new with Artillery but I wrote a test that i was able to run locally and when i tried to run it through a pipeline on azure, is there any known issues for that? Or am i just doing it wrong
config:
target: "endpoint url"
phases:
- duration: 60
arrivalCount: 30
scenarios:
flow:
url: "token url"
headers:
Content-Type: "application/x-www-form-urlencoded"
form:
username: 'xxx@xxx.com'
password: 'password123'
grant_type: 'password'
client_id: 'xxxxxxx'
client_secret: 'xxxxxxxxxxx'
scope: 'xxxxxx'
subscriberId: 'xxxxx'
isStaff: 'true'
capture:
json: "$.access_token"
as: access_token
expect:
url: "another api"
headers:
Authorization: "Bearer {{access_token}}"
locationId:
Figured this out
Beta Was this translation helpful? Give feedback.
All reactions