Type alias ClickActionOptions

ClickActionOptions: {
    button?: "left" | "right" | "middle";
    clickCount?: number;
    delay?: number;
    force?: boolean;
    modifiers?: Modifiers;
    noWaitAfter?: boolean;
    position?: Point;
    timeout?: number;
    trial?: boolean;
}

Type declaration

  • Optional button?: "left" | "right" | "middle"

    Defaults to left.

  • Optional clickCount?: number

    defaults to 1. See [UIEvent.detail].

  • Optional delay?: number

    Time to wait between mousedown and mouseup in milliseconds. Defaults to 0.

  • Optional force?: boolean

    Whether to bypass the actionability checks. Defaults to false.

  • Optional modifiers?: Modifiers

    Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used.

  • Optional noWaitAfter?: boolean

    Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults to false.

  • Optional position?: Point

    A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.

  • Optional timeout?: number

    Maximum time in milliseconds. Defaults to 0 - no timeout. The default value can be changed via actionTimeout option in the config, or by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.

  • Optional trial?: boolean

    When set, this method only performs the actionability checks and skips the action. Defaults to false. Useful to wait until the element is ready for the action without performing it.

Generated using TypeDoc