class Playwright::Frame::DblclickOptions

Included Modules

Defined in:

playwright/frame.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(button : Playwright::Mouse::Button | Nil = nil, delay : Int32 | Nil = nil, position : Nil | Playwright::Position = nil, modifiers : Set(Playwright::Keyboard::Modifier) | Nil = nil, force : Bool | Nil = nil, no_wait_after : Bool | Nil = nil, timeout : Int32 | Nil = nil) #

[View source]

Instance Method Detail

def button : Mouse::Button | Nil #

Defaults to left.


[View source]
def button=(button : Mouse::Button | Nil) #

Defaults to left.


[View source]
def delay : Int32 | Nil #

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


[View source]
def delay=(delay : Int32 | Nil) #

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


[View source]
def force : Bool | Nil #

Whether to bypass the actionability checks. Defaults to false.


[View source]
def force=(force : Bool | Nil) #

Whether to bypass the actionability checks. Defaults to false.


[View source]
def modifiers : Set(Keyboard::Modifier) | Nil #

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.


[View source]
def modifiers=(modifiers : Set(Keyboard::Modifier) | Nil) #

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.


[View source]
def no_wait_after : Bool | Nil #

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.


[View source]
def no_wait_after=(no_wait_after : Bool | Nil) #

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.


[View source]
def position : Position | Nil #

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


[View source]
def position=(position : Position | Nil) #

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


[View source]
def timeout : Int32 | Nil #

Maximum time in milliseconds, defaults to 30 seconds, pass 0 to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.


[View source]
def timeout=(timeout : Int32 | Nil) #

Maximum time in milliseconds, defaults to 30 seconds, pass 0 to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.


[View source]
def with_position(x : Int32, y : Int32) : DblclickOptions #

[View source]
def with_position(position : Position) : DblclickOptions #

[View source]