AboutSupportDeveloper GuideVersion 1.1.0

Interface WaitForWindowClassStrategy

A window launch discovery strategy that looks for a window whose underlying OS class type matches the given regular expression. It will timeout after the given time period if no window is found.

interface WaitForWindowClassStrategy {
    matchRegex: string;
    timeoutMs: number;
    type: "waitForWindowOfClass";
}

Properties

matchRegex: string

A (Rust-evaluated) regular expression string to match the window class against

timeoutMs: number

The timeout period milliseconds after which the window search will be abandoned

type: "waitForWindowOfClass"