UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

12 lines 642 B
import type { LogEntry } from '../../commands/types'; export declare const DEFAULT_LOG_LEVEL = "ALL"; export declare const MAX_JSON_LOG_LENGTH = 200; export declare const MAX_BUFFERED_EVENTS_COUNT = 5000; export interface GrepOptions { caseInsensitive?: boolean; } /** Converts raw log message fields into a WebDriver-style log entry. */ export declare function toLogEntry(message: string, timestamp: number, level?: string): LogEntry; /** Returns true if the file contains the provided string. */ export declare function grepFile(fullPath: string, str: string, opts?: GrepOptions): Promise<boolean>; //# sourceMappingURL=helpers.d.ts.map