.network.setConditions() 建议编辑
用于设置 Chrome 网络模拟设置的命令。
用法
.setNetworkConditions(spec, [callback])
.network.setConditions(spec, [callback])
示例
describe('set network conditions', function() {
it('sets the network conditions',function() {
browser
.network.setConditions({
offline: false,
latency: 3000,
download_throughput: 500 * 1024,
upload_throughput: 500 * 1024
});
});
});
参数
名称 | 类型 | 描述 |
---|---|---|
规范 |
对象 | |
回调 可选 |
函数 | 命令完成后调用的可选回调函数。 |