You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
478 B
13 lines
478 B
import TestCaseStepNode from "../core/testCaseStepNode";
|
|
import { TestStep } from "@playwright/test/reporter";
|
|
export declare class PlaywrightTestStep extends TestCaseStepNode {
|
|
readonly nativeStep: TestStep;
|
|
readonly locationInFile: string;
|
|
readonly title: string;
|
|
get absoluteFilePath(): string;
|
|
get duration(): number;
|
|
setUpTestNode(nodeId: number, parentNodeIt: number): void;
|
|
constructor(nativeStep: TestStep);
|
|
toKeyValueString(): string;
|
|
}
|