Need help in understanding the output stats. #3279
amit-saini-tx
started this conversation in
Artillery
Replies: 1 comment 2 replies
-
Hello @amit-saini-tx 👋 You seem to be using the await step('search_record', async () => {
await page.getByPlaceholder('enter id').fill(`${recordid}`);
await page.getByRole('button', { name: 'Go' }).click();
await page.locator('css=button.avatar-button').click();
}); Artillery would record the time it takes to enter the id and click the two buttons in the example, and save it under the You should think of these as frontend-facing metrics that you model to represent user actions that you're interested in finding out how long they take. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
I'm running artillery test with playwright Javascript and finding it difficult to understand the output. Can anyone please help here?
Question: Lets say I have a step for clicking on a Submit button and in output I'm getting min, max and mean times for the same like in below sample. So, my question is, the min/max time is the response time after that click or min/max time it took to click on that button(ignoring whatever time its took to response)? how should I read the output.
browser.step.Step 2: click_submit_button:
min: ......................................................................... 168
max: ......................................................................... 1232
mean: ........................................................................ 675
median: ...................................................................... 478.3
p95: ......................................................................... 1130.2
p99: ......................................................................... 1130.2
Please let me know if more clarification is required.
Beta Was this translation helpful? Give feedback.
All reactions