class Playwright::Page::TapOptions

Included Modules

Defined in:

playwright/page.cr

Constructors

Instance Method Summary

Constructor Detail

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

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

[View source]

Instance Method Detail

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]