class Playwright::Page::HoverOptions

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::Position = nil, modifiers : Set(Playwright::Keyboard::Modifier) | 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 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) : HoverOptions #

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

[View source]