alpha wip
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Automation adapters for browser automation.
|
||||
*
|
||||
* Exports:
|
||||
* - MockBrowserAutomationAdapter: Mock adapter for testing
|
||||
* - PlaywrightAutomationAdapter: Browser automation via Playwright
|
||||
* - FixtureServer: HTTP server for serving fixture HTML files
|
||||
*/
|
||||
|
||||
// Adapters
|
||||
export { MockBrowserAutomationAdapter } from './engine/MockBrowserAutomationAdapter';
|
||||
export { PlaywrightAutomationAdapter } from './core/PlaywrightAutomationAdapter';
|
||||
export type { PlaywrightConfig, AutomationAdapterMode } from './core/PlaywrightAutomationAdapter';
|
||||
|
||||
// Services
|
||||
export { FixtureServer, getFixtureForStep, getAllStepFixtureMappings } from './engine/FixtureServer';
|
||||
export type { IFixtureServer } from './engine/FixtureServer';
|
||||
|
||||
// Template map and utilities removed (image-based automation deprecated)
|
||||
Reference in New Issue
Block a user