2020-07-10 01:33:01 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
import * as channels from '../protocol/channels';
|
2020-12-27 04:05:57 +03:00
|
|
|
import * as api from '../../types/types';
|
2020-07-10 01:33:01 +03:00
|
|
|
|
2020-12-27 04:05:57 +03:00
|
|
|
export class ChromiumCoverage implements api.ChromiumCoverage {
|
2020-08-25 03:05:16 +03:00
|
|
|
private _channel: channels.PageChannel;
|
2020-07-10 01:33:01 +03:00
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
constructor(channel: channels.PageChannel) {
|
2020-07-10 01:33:01 +03:00
|
|
|
this._channel = channel;
|
|
|
|
}
|
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
async startJSCoverage(options: channels.PageCrStartJSCoverageOptions = {}) {
|
2020-07-10 01:33:01 +03:00
|
|
|
await this._channel.crStartJSCoverage(options);
|
|
|
|
}
|
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
async stopJSCoverage(): Promise<channels.PageCrStopJSCoverageResult['entries']> {
|
2020-07-15 04:26:50 +03:00
|
|
|
return (await this._channel.crStopJSCoverage()).entries;
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
async startCSSCoverage(options: channels.PageCrStartCSSCoverageOptions = {}) {
|
2020-07-10 01:33:01 +03:00
|
|
|
await this._channel.crStartCSSCoverage(options);
|
|
|
|
}
|
|
|
|
|
2020-08-25 03:05:16 +03:00
|
|
|
async stopCSSCoverage(): Promise<channels.PageCrStopCSSCoverageResult['entries']> {
|
2020-07-15 04:26:50 +03:00
|
|
|
return (await this._channel.crStopCSSCoverage()).entries;
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
}
|