Skip to content

Commit

Permalink
fix: Puppeteer helper doc typo (#4369)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannfleurydev authored Jun 3, 2024
1 parent ca956d6 commit e36d869
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit e36d869

Please sign in to comment.