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.
|
|
|
|
*/
|
|
|
|
|
2022-04-07 00:57:14 +03:00
|
|
|
import type * as channels from '../protocol/channels';
|
|
|
|
import type * as api from '../../types/types';
|
2020-07-10 01:33:01 +03:00
|
|
|
|
2021-04-02 04:47:14 +03:00
|
|
|
export class Coverage implements api.Coverage {
|
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;
|
|
|
|
}
|
|
|
|
|
2021-04-02 04:47:14 +03:00
|
|
|
async startJSCoverage(options: channels.PageStartJSCoverageOptions = {}) {
|
|
|
|
await this._channel.startJSCoverage(options);
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
|
2021-04-02 04:47:14 +03:00
|
|
|
async stopJSCoverage(): Promise<channels.PageStopJSCoverageResult['entries']> {
|
|
|
|
return (await this._channel.stopJSCoverage()).entries;
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
|
2021-04-02 04:47:14 +03:00
|
|
|
async startCSSCoverage(options: channels.PageStartCSSCoverageOptions = {}) {
|
|
|
|
await this._channel.startCSSCoverage(options);
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
|
2021-04-02 04:47:14 +03:00
|
|
|
async stopCSSCoverage(): Promise<channels.PageStopCSSCoverageResult['entries']> {
|
|
|
|
return (await this._channel.stopCSSCoverage()).entries;
|
2020-07-10 01:33:01 +03:00
|
|
|
}
|
|
|
|
}
|