You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When navigating to Playwright pages using the goto method, one can pass an option called waitUntil which decides when the operation is considered succeeded. Across all pages models in plugin-e2e, networkidle mode is used by default. In practice this means navigation will resolve only when all network requests have been completed. Every plugin-e2e page model has a goto method that allows you to override this behaviour which is good.
A while back we introduced a new set of fixtures that allows you to quickly navigate to an existing resource (e.g await gotoDashboardPage({uid: 'abc' }). However, these goto<pagename> fixtures currently doesn't allow users to override waitUntil.
Solution
The goto<pagename> fixtures should allow user to override waitUntil.
Alternatives
No response
Additional context
No response
Are you interested in contributing the solution?
Yes
No
The text was updated successfully, but these errors were encountered:
Which areas does this feature request relate to
Problem
When navigating to Playwright pages using the
goto
method, one can pass an option calledwaitUntil
which decides when the operation is considered succeeded. Across all pages models in plugin-e2e,networkidle
mode is used by default. In practice this means navigation will resolve only when all network requests have been completed. Every plugin-e2e page model has agoto
method that allows you to override this behaviour which is good.A while back we introduced a new set of fixtures that allows you to quickly navigate to an existing resource (e.g
await gotoDashboardPage({uid: 'abc' })
. However, thesegoto<pagename>
fixtures currently doesn't allow users to overridewaitUntil
.Solution
The
goto<pagename>
fixtures should allow user to overridewaitUntil
.Alternatives
No response
Additional context
No response
Are you interested in contributing the solution?
The text was updated successfully, but these errors were encountered: