Modules: PointerEventProperties Classes: InputDevice, Interaction, KeyInput, NoneInput, Pause, PointerCancel, PointerInput, PointerMove, PointerPress, Scroll, TypingInteraction, WheelInput
Constant Summary collapse:key
:pointer
:none
:wheel
33 34 35
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 33 def key(name = nil) KeyInput.new(name) end.mouse(name: nil) ⇒ Object
41 42 43
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 41 def mouse(name: nil) pointer(name: name) end.none(name = nil) ⇒ Object
53 54 55
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 53 def none(name = nil) NoneInput.new(name) end.pen(name: nil) ⇒ Object
45 46 47
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 45 def pen(name: nil) pointer(:pen, name: name) end.pointer(kind = :mouse, name: nil) ⇒ Object
37 38 39
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 37 def pointer(kind = :mouse, name: nil) PointerInput.new(kind, name: name) end.touch(name: nil) ⇒ Object
49 50 51
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 49 def touch(name: nil) pointer(:touch, name: name) end.wheel(name = nil) ⇒ Object
57 58 59
# File 'rb/lib/selenium/webdriver/common/interactions/interactions.rb', line 57 def wheel(name = nil) WheelInput.new(name) end
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4