Replies: 3 comments 19 replies
-
hi @sruthii38 👋 this should work:
please make sure you're on the most recent version of the engine as well (v0.2.2) |
Beta Was this translation helpful? Give feedback.
4 replies
-
I see this warning |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a scenario where an action to upload 3k records through xls is taking around 30s and sometimes more. We are planning to increase this limit of xls record to 10k and I cannot validate the performance because playwright's default time is timing out 50% of my transactions when I try it for 3k limit. I have tried the following.
Action timeout: .click{timeout:60000} - no impact Timeout happened at 3000ms
test.setTimeout(60000) - worked only for Playwright and errored when Artillery picked with error - test.setTimeout can only be used with test.
contextOptions:
defaultTimeout: 60000 - no impact timeouts happened at 30000ms
Beta Was this translation helpful? Give feedback.
All reactions