mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
35 lines
1.0 KiB
Markdown
35 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Puppeteer](./puppeteer.puppeteer.md) > [networkConditions](./puppeteer.puppeteer.networkconditions.md)
|
|
|
|
## Puppeteer.networkConditions property
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
get networkConditions(): PredefinedNetworkConditions;
|
|
```
|
|
|
|
## Remarks
|
|
|
|
Returns a list of network conditions to be used with `page.emulateNetworkConditions(networkConditions)`. Actual list of predefined conditions can be found in [src/common/NetworkConditions.ts](https://github.com/puppeteer/puppeteer/blob/main/src/common/NetworkConditions.ts).
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
const puppeteer = require('puppeteer');
|
|
const slow3G = puppeteer.networkConditions['Slow 3G'];
|
|
|
|
(async () => {
|
|
const browser = await puppeteer.launch();
|
|
const page = await browser.newPage();
|
|
await page.emulateNetworkConditions(slow3G);
|
|
await page.goto('https://www.google.com');
|
|
// other actions...
|
|
await browser.close();
|
|
})();
|
|
|
|
```
|
|
|