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.
venv/PyCharm 2025.2.1.1/plugins/javascript-plugin/reporting/playwright/playwrightTestStep.d.ts

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;
}