Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/shared/interfaces/ICommandResult.ts
2683 views
1
export default interface ICommandWithResult {
2
id: number;
3
tabId: number;
4
frameId: number;
5
name: string;
6
label: string;
7
args?: string;
8
startDate: number;
9
endDate?: number;
10
duration: number;
11
isError: boolean;
12
frameIdPath?: string;
13
result: any;
14
resultType?: string;
15
resultNodeIds?: number[];
16
resultNodeType?: string;
17
failedJsPathStepIndex?: number;
18
failedJsPathStep?: string;
19
}
20
21