Skip to content

Commit

Permalink
increased wait time for interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
jakopako committed May 14, 2023
1 parent f1ffb6f commit c2ca4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetch/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (d *DynamicFetcher) Fetch(url string) (string, error) {
} // nothing to do
return chromedp.MouseClickNode(nodes[0]).Do(ctx)
}))
actions = append(actions, chromedp.Sleep(1*time.Second))
actions = append(actions, chromedp.Sleep(2*time.Second)) // a bit arbitrary
}
}
actions = append(actions, chromedp.ActionFunc(func(ctx context.Context) error {
Expand Down

0 comments on commit c2ca4df

Please sign in to comment.