Member Junction
    Preparing search index...

    A human key press routed into the browser during takeover.

    interface RemoteBrowserKeyInput {
        Key: string;
        Kind: "key";
        Modifiers?: RemoteBrowserModifierKey[];
    }
    Index

    Properties

    Properties

    Key: string

    The key (or combination) pressed, in Playwright/CDP key syntax.

    Kind: "key"

    Modifier keys held during the press (e.g. ['Control'] with Key: 'a' for select-all). The mapper composes these with Key into a single Playwright/CDP chord. Omitted / empty means the Key is pressed on its own.