ctrlshiftleft
Version:
AI-powered toolkit for embedding QA and security testing into development workflows
9 lines (8 loc) • 383 B
TypeScript
import { TestScenario, TestTemplate } from '../types/testTypes';
/**
* Generate a Selenium test file from test scenarios
* @param scenarios Test scenarios to include
* @param sourcePath Path to the source file (for documentation)
* @returns Test template with content
*/
export declare function generateSeleniumTest(scenarios: TestScenario[], sourcePath: string): TestTemplate;