Module: Selenium::WebDriver::DriverExtensions::Rotatable Private

Included in:
Remote::Driver
Defined in:
lib/selenium/webdriver/common/driver_extensions/rotatable.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Constant Summary collapse

ORIENTATIONS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

[:landscape, :portrait].freeze

Instance Method Summary collapse

Instance Method Details

#orientation:landscape, :portrait

Get the current screen orientation

Returns:

  • (:landscape, :portrait)

    orientation



55
56
57
# File 'lib/selenium/webdriver/common/driver_extensions/rotatable.rb', line 55

def orientation
  bridge.screen_orientation.to_sym.downcase
end

#rotation=(orientation) ⇒ Object Also known as: rotate

Change the screen orientation

Parameters:

  • orientation (:landscape, :portrait)


38
39
40
41
42
43
44
# File 'lib/selenium/webdriver/common/driver_extensions/rotatable.rb', line 38

def rotation=(orientation)
  unless ORIENTATIONS.include?(orientation)
    raise ArgumentError, "expected #{ORIENTATIONS.inspect}, got #{orientation.inspect}"
  end

  bridge.screen_orientation = orientation.to_s.upcase
end