tm-playwright-framework
Version:
Playwright Cucumber TS framework - The easiest way to learn
21 lines (20 loc) • 837 B
TypeScript
/**
* GLOBAL-SETUP.TS
*
* This TypeScript file instantiates all classes and provides access to their methods and members.
*
* @author Sasitharan, Govindharam
* @reviewer Sahoo, AshokKumar
* @version 1.0 - 1st-JUNE-2025
*
* @functions
* - `runScript`: Function to run a script and wait for it to complete.
* - `preScript`: Function tp run pre test to compile and build the script
* - `parseCommandLineArgs`: Parse and Validate the command line arguments passed
* - `runScriptsInOrder`: Executes scripts in a specific order.
* - `getBrowserVersion`: Get the version of currently executed browser
* - `postScript`: Function to run post to generate Multiple Cucumber Report
*/
export declare function BeforeAll(): void;
export declare function AfterAll(): Promise<void>;
export declare function BeforeEach(page: any): void;