Replies: 2 comments
-
|
hi @veletron2 - there's no way to customize |
Beta Was this translation helpful? Give feedback.
-
|
@veletron2 I came across the same issue and it was frustrating! But I found this earlier discussion on the topic: And a solution I've found it to create a utility file with the following code: Which overrides the standard |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Trying to set timeouts for Artillary/Playwright in a .ts file globally./ Any way to do this, preferably inline within the .ts file.
I have tried the following to no avail, timeouts still 5000ms:
The only way I can make a timeout actually work is to declare it per line, which is exceedingly tedious:
await expect(page.getByRole('link', { name: 'Patients' })).toBeVisible({ timeout: 60000 });
Beta Was this translation helpful? Give feedback.
All reactions