CSS.stopRuleUsageTrackingStop tracking rule usage and return the list of rules that were used since last call to `takeCoverageDelta` (or since start of coverage instrumentation).
| Name | Type | Description |
|---|---|---|
ruleUsage | array |
{
"id": 1,
"method": "CSS.stopRuleUsageTracking"
}
{
"id": 1,
"result": {
"ruleUsage": []
}
}
const result = await send('CSS.stopRuleUsageTracking');
console.log(result);
// {"ruleUsage": []}