fix(integration): non-working scenarios because of a remote service down

This commit is contained in:
Julien Neuhart
2025-08-03 18:02:35 +02:00
parent 339afe614c
commit 6ff5109b00
8 changed files with 95 additions and 101 deletions

View File

@@ -330,7 +330,7 @@ func navigateActionFunc(logger *zap.Logger, url string, skipNetworkIdleEvent boo
return func(ctx context.Context) error {
logger.Debug(fmt.Sprintf("navigate to '%s'", url))
_, _, _, err := page.Navigate(url).Do(ctx)
_, _, _, _, err := page.Navigate(url).Do(ctx)
if err != nil {
return fmt.Errorf("navigate to '%s': %w", url, err)
}