module Selenium::WebDriver::DriverExtensions::HasTouchScreen

Public Instance Methods

touch() click to toggle source
# File lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb, line 23
def touch
  TouchActionBuilder.new Mouse.new(@bridge), Keyboard.new(@bridge), touch_screen
end

Private Instance Methods

touch_screen() click to toggle source
# File lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb, line 29
def touch_screen
  TouchScreen.new @bridge
end