Skip to content

Interface: BoundsExpectation

@termwright/driver


@termwright/driver / BoundsExpectation

Defined in: driver/src/api.ts:750

@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.

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();

readonly optional column?: number

Defined in: driver/src/api.ts:752


readonly optional height?: number

Defined in: driver/src/api.ts:754


readonly optional row?: number

Defined in: driver/src/api.ts:751


readonly optional width?: number

Defined in: driver/src/api.ts:753