Skip to content

Commit

Permalink
fixup! Fix typo in page navigation error
Browse files Browse the repository at this point in the history
  • Loading branch information
inancgumus committed Jan 22, 2024
1 parent 52c351a commit f1b5104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/mapping.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ func mapPage(vu moduleVU, p *common.Page) mapping {
p.MainFrame().NavigationTimeout(),
)
if err := gopts.Parse(vu.Context(), opts); err != nil {
return nil, fmt.Errorf("parsing frame navigation options to %q: %w", url, err)
return nil, fmt.Errorf("parsing page navigation options to %q: %w", url, err)
}
return k6ext.Promise(vu.Context(), func() (any, error) {
resp, err := p.Goto(url, gopts)
Expand Down

0 comments on commit f1b5104

Please sign in to comment.