Page.emulateNetworkConditions() 方法
这不会影响 WebSockets 和 WebRTC 对等连接(参见 https://crbug.com/563644)。要将页面设置为离线状态,可以使用 Page.setOfflineMode()。
可以通过导入 PredefinedNetworkConditions 来使用预定义的网络条件列表。
签名:
class Page {
abstract emulateNetworkConditions(
networkConditions: NetworkConditions | null
): Promise<void>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
networkConditions | NetworkConditions | null | 传递 null 将禁用网络条件模拟。 |
返回值
Promise<void>
示例
import {PredefinedNetworkConditions} from 'puppeteer';
const slow3G = PredefinedNetworkConditions['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();
})();