devtools-protocol 0.0.1526016 → 0.0.1526665
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17272,7 +17272,7 @@
|
|
17272
17272
|
},
|
17273
17273
|
{
|
17274
17274
|
"name": "emulateNetworkConditionsByRule",
|
17275
|
-
"description": "Activates emulation of network conditions for individual requests using URL match patterns.",
|
17275
|
+
"description": "Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated\nNetwork.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to\nexplicitly modify `navigator` behavior.",
|
17276
17276
|
"experimental": true,
|
17277
17277
|
"parameters": [
|
17278
17278
|
{
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
@@ -1129,7 +1129,9 @@ domain Network
|
|
1129
1129
|
# WebRTC packetReordering feature.
|
1130
1130
|
experimental optional boolean packetReordering
|
1131
1131
|
|
1132
|
-
# Activates emulation of network conditions for individual requests using URL match patterns.
|
1132
|
+
# Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
|
1133
|
+
# Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
|
1134
|
+
# explicitly modify `navigator` behavior.
|
1133
1135
|
experimental command emulateNetworkConditionsByRule
|
1134
1136
|
parameters
|
1135
1137
|
# True to emulate internet disconnection.
|
@@ -4175,7 +4175,9 @@ export namespace ProtocolMapping {
|
|
4175
4175
|
returnType: void;
|
4176
4176
|
};
|
4177
4177
|
/**
|
4178
|
-
* Activates emulation of network conditions for individual requests using URL match patterns.
|
4178
|
+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
|
4179
|
+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
|
4180
|
+
* explicitly modify `navigator` behavior.
|
4179
4181
|
* @experimental
|
4180
4182
|
*/
|
4181
4183
|
'Network.emulateNetworkConditionsByRule': {
|
@@ -3039,7 +3039,9 @@ export namespace ProtocolProxyApi {
|
|
3039
3039
|
emulateNetworkConditions(params: Protocol.Network.EmulateNetworkConditionsRequest): Promise<void>;
|
3040
3040
|
|
3041
3041
|
/**
|
3042
|
-
* Activates emulation of network conditions for individual requests using URL match patterns.
|
3042
|
+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
|
3043
|
+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
|
3044
|
+
* explicitly modify `navigator` behavior.
|
3043
3045
|
* @experimental
|
3044
3046
|
*/
|
3045
3047
|
emulateNetworkConditionsByRule(params: Protocol.Network.EmulateNetworkConditionsByRuleRequest): Promise<Protocol.Network.EmulateNetworkConditionsByRuleResponse>;
|
@@ -3207,7 +3207,9 @@ export namespace ProtocolTestsProxyApi {
|
|
3207
3207
|
emulateNetworkConditions(params: Protocol.Network.EmulateNetworkConditionsRequest): Promise<{id: number, result: void, sessionId: string}>;
|
3208
3208
|
|
3209
3209
|
/**
|
3210
|
-
* Activates emulation of network conditions for individual requests using URL match patterns.
|
3210
|
+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
|
3211
|
+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
|
3212
|
+
* explicitly modify `navigator` behavior.
|
3211
3213
|
* @experimental
|
3212
3214
|
*/
|
3213
3215
|
emulateNetworkConditionsByRule(params: Protocol.Network.EmulateNetworkConditionsByRuleRequest): Promise<{id: number, result: Protocol.Network.EmulateNetworkConditionsByRuleResponse, sessionId: string}>;
|