Skip to content
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