mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

Matching bu `apiName@wallTime` fails when two actions start at the same time, e.g. two parallel api requests. Moreover, it results in trace actions that have parent set to themselves, which in turn causes infinite loop in the trace viewer. To avoid this problems we write stepId explicitly to the library trace and use those step ids to find corresponding test runner steps. The stepId is passed via zone in case of expect, because the protocol step is quite deep in the call chain after or explicitly in case of API call steps created by the test runner instrumentation.
78 lines
2.0 KiB
TypeScript
78 lines
2.0 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 type { Language } from '../../playwright-core/src/utils/isomorphic/locatorGenerators';
|
|
import type { ResourceSnapshot } from '@trace/snapshot';
|
|
import type * as trace from '@trace/trace';
|
|
|
|
export type ContextEntry = {
|
|
origin: 'testRunner'|'library';
|
|
traceUrl: string;
|
|
startTime: number;
|
|
endTime: number;
|
|
browserName: string;
|
|
channel?: string;
|
|
platform?: string;
|
|
wallTime: number;
|
|
sdkLanguage?: Language;
|
|
testIdAttributeName?: string;
|
|
title?: string;
|
|
options: trace.BrowserContextEventOptions;
|
|
pages: PageEntry[];
|
|
resources: ResourceSnapshot[];
|
|
actions: ActionEntry[];
|
|
events: (trace.EventTraceEvent | trace.ConsoleMessageTraceEvent)[];
|
|
stdio: trace.StdioTraceEvent[];
|
|
errors: trace.ErrorTraceEvent[];
|
|
hasSource: boolean;
|
|
};
|
|
|
|
export type PageEntry = {
|
|
screencastFrames: {
|
|
sha1: string,
|
|
timestamp: number,
|
|
width: number,
|
|
height: number,
|
|
}[];
|
|
};
|
|
|
|
export type ActionEntry = trace.ActionTraceEvent & {
|
|
log: { time: number, message: string }[];
|
|
};
|
|
|
|
export function createEmptyContext(): ContextEntry {
|
|
return {
|
|
origin: 'testRunner',
|
|
traceUrl: '',
|
|
startTime: Number.MAX_SAFE_INTEGER,
|
|
wallTime: Number.MAX_SAFE_INTEGER,
|
|
endTime: 0,
|
|
browserName: '',
|
|
options: {
|
|
deviceScaleFactor: 1,
|
|
isMobile: false,
|
|
viewport: { width: 1280, height: 800 },
|
|
},
|
|
pages: [],
|
|
resources: [],
|
|
actions: [],
|
|
events: [],
|
|
errors: [],
|
|
stdio: [],
|
|
hasSource: false,
|
|
};
|
|
}
|