ctrlshiftleft
Version:
AI-powered toolkit for embedding QA and security testing into development workflows
9 lines (8 loc) • 377 B
TypeScript
import { TestTemplate } from '../types/testTypes';
/**
* Generates a Page Object Model class for a component
* @param sourcePath Path to the source component
* @param sourceCode Source code of the component
* @returns Test template with Page Object Model content
*/
export declare function generatePageObjectTemplate(sourcePath: string, sourceCode: string): TestTemplate;