Member Junction
    Preparing search index...

    Type text. When Selector is provided the driver focuses that element first; otherwise the text is sent to the currently-focused element.

    interface RemoteBrowserTypeAction {
        Kind: "type";
        Selector?: string;
        Text: string;
    }
    Index

    Properties

    Properties

    Kind: "type"
    Selector?: string

    Optional CSS selector to focus before typing.

    Text: string

    The text to type.