@wdio/appium-service
Version:
A WebdriverIO service to start & stop Appium Server
50 lines • 1.34 kB
TypeScript
import type { SelectorPerformanceData } from './types.js';
/**
* Update current suite name
*/
export declare function setCurrentSuiteName(suiteName: string): void;
/**
* Get current suite name
*/
export declare function getCurrentSuiteName(): string | undefined;
/**
* Update current test file
*/
export declare function setCurrentTestFile(testFile: string): void;
/**
* Get current test file
*/
export declare function getCurrentTestFile(): string | undefined;
/**
* Update current test name
*/
export declare function setCurrentTestName(testName: string): void;
/**
* Get current test name
*/
export declare function getCurrentTestName(): string | undefined;
/**
* Update current device name
*/
export declare function setCurrentDeviceName(deviceName: string): void;
/**
* Get current device name
*/
export declare function getCurrentDeviceName(): string | undefined;
/**
* Add performance data to the store
*/
export declare function addPerformanceData(data: SelectorPerformanceData): void;
/**
* Get all performance data
*/
export declare function getPerformanceData(): SelectorPerformanceData[];
/**
* Clear all performance data
*/
export declare function clearPerformanceData(): void;
/**
* Clear the store (useful for cleanup)
*/
export declare function clearStore(): void;
//# sourceMappingURL=mspo-store.d.ts.map