Skip to content

fix: Puppeteer helper doc broken link #4369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/helpers/Puppeteer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2476,7 +2476,7 @@ Returns **void** automatically synchronized promise through #recorder

[18]: https://codecept.io/helpers/FileSystem

[19]: https://pptr.dev/next/guides/request-interception
[19]: https://pptr.dev/guides/network-interception

[20]: https://github.com/GoogleChrome/puppeteer/issues/1313

Expand Down
4 changes: 2 additions & 2 deletions lib/helper/Puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2472,12 +2472,12 @@ class Puppeteer extends Helper {
}

/**
* Mocks network request using [`Request Interception`](https://pptr.dev/next/guides/request-interception)
* Mocks network request using [`Request Interception`](https://pptr.dev/guides/network-interception)
*
* ```js
* I.mockRoute(/(\.png$)|(\.jpg$)/, route => route.abort());
* ```
* This method allows intercepting and mocking requests & responses. [Learn more about it](https://pptr.dev/next/guides/request-interception)
* This method allows intercepting and mocking requests & responses. [Learn more about it](https://pptr.dev/guides/network-interception)
*
* @param {string|RegExp} [url] URL, regex or pattern for to match URL
* @param {function} [handler] a function to process request
Expand Down
Loading