mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
112 lines
2.4 KiB
TypeScript
112 lines
2.4 KiB
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
import { CallMetadata } from '../../instrumentation';
|
|
|
|
export type ContextCreatedTraceEvent = {
|
|
timestamp: number,
|
|
type: 'context-created',
|
|
browserName: string,
|
|
contextId: string,
|
|
deviceScaleFactor: number,
|
|
isMobile: boolean,
|
|
viewportSize?: { width: number, height: number },
|
|
debugName?: string,
|
|
};
|
|
|
|
export type ContextDestroyedTraceEvent = {
|
|
timestamp: number,
|
|
type: 'context-destroyed',
|
|
contextId: string,
|
|
};
|
|
|
|
export type PageCreatedTraceEvent = {
|
|
timestamp: number,
|
|
type: 'page-created',
|
|
contextId: string,
|
|
pageId: string,
|
|
};
|
|
|
|
export type PageDestroyedTraceEvent = {
|
|
timestamp: number,
|
|
type: 'page-destroyed',
|
|
contextId: string,
|
|
pageId: string,
|
|
};
|
|
|
|
export type ScreencastFrameTraceEvent = {
|
|
timestamp: number,
|
|
type: 'page-screencast-frame',
|
|
contextId: string,
|
|
pageId: string,
|
|
pageTimestamp: number,
|
|
sha1: string,
|
|
width: number,
|
|
height: number,
|
|
};
|
|
|
|
export type ActionTraceEvent = {
|
|
timestamp: number,
|
|
type: 'action' | 'event',
|
|
contextId: string,
|
|
metadata: CallMetadata,
|
|
};
|
|
|
|
export type DialogOpenedEvent = {
|
|
timestamp: number,
|
|
type: 'dialog-opened',
|
|
contextId: string,
|
|
pageId: string,
|
|
dialogType: string,
|
|
message?: string,
|
|
};
|
|
|
|
export type DialogClosedEvent = {
|
|
timestamp: number,
|
|
type: 'dialog-closed',
|
|
contextId: string,
|
|
pageId: string,
|
|
dialogType: string,
|
|
};
|
|
|
|
export type NavigationEvent = {
|
|
timestamp: number,
|
|
type: 'navigation',
|
|
contextId: string,
|
|
pageId: string,
|
|
url: string,
|
|
sameDocument: boolean,
|
|
};
|
|
|
|
export type LoadEvent = {
|
|
timestamp: number,
|
|
type: 'load',
|
|
contextId: string,
|
|
pageId: string,
|
|
};
|
|
|
|
export type TraceEvent =
|
|
ContextCreatedTraceEvent |
|
|
ContextDestroyedTraceEvent |
|
|
PageCreatedTraceEvent |
|
|
PageDestroyedTraceEvent |
|
|
ScreencastFrameTraceEvent |
|
|
ActionTraceEvent |
|
|
DialogOpenedEvent |
|
|
DialogClosedEvent |
|
|
NavigationEvent |
|
|
LoadEvent;
|