Interface: RecordingOptions
@termwright/driver / RecordingOptions
Interface: RecordingOptions
Section titled “Interface: RecordingOptions”Defined in: driver/src/api.ts:59
@termwright/driver — PTY + VT sessions, locators, actions and waits.
The normative public API lives in api.ts; this module is the only entry
point and re-exports the types from there together with their runtime
implementations.
Example
Section titled “Example”import { launchTerminal } from '@termwright/driver';
const terminal = await launchTerminal({ command: ['node', 'app.js'] });await terminal.waitForText('Ready');await terminal.getByRole('button', { name: 'Approve' }).activate();await terminal.close();Properties
Section titled “Properties”enabled?
Section titled “enabled?”
readonlyoptionalenabled?:boolean
Defined in: driver/src/api.ts:61
Recording of the raw session to asciicast is ON by default.
idleTimeLimit?
Section titled “idleTimeLimit?”
readonlyoptionalidleTimeLimit?:number
Defined in: driver/src/api.ts:62