Class: AppleTvScreens
- Defined in:
- lib/screens/apple_tv/apple_tv_screens.rb
Overview
Adds to or modifies the screens with AppleTv-specific screens.
Instance Attribute Summary collapse
-
#dvr ⇒ Object
readonly
Returns the value of attribute dvr.
-
#library ⇒ Object
readonly
Returns the value of attribute library.
-
#login ⇒ Object
readonly
Returns the value of attribute login.
-
#movies ⇒ Object
readonly
Returns the value of attribute movies.
-
#tv_shows ⇒ Object
readonly
Returns the value of attribute tv_shows.
-
#video_store ⇒ Object
readonly
Returns the value of attribute video_store.
Attributes inherited from Screens
#guide, #live_tv, #main_menu, #mini_guide, #on_demand, #parental_controls, #product_page, #search, #settings
Instance Method Summary collapse
-
#initialize(*args) ⇒ AppleTvScreens
constructor
Public: Initializes AppleTvScreens.
Constructor Details
#initialize(*args) ⇒ AppleTvScreens
Public: Initializes AppleTvScreens. NOT FOR USE IN TESTS.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 25 def initialize(*args) super(*args) @login = AppleTvLogin.new(@dut) @dvr = AppleTvDvr.new(@dut) @guide = AppleTvGuide.new(@dut) @mini_guide = AppleTvMiniGuide.new(@dut) @main_menu = AppleTvMainMenu.new(@dut) @on_demand = AppleTvOnDemand.new(@dut) @live_tv = AppleTvLiveTv.new(@dut) @settings = AppleTvSettings.new(@dut) @parental_controls = AppleTvParentalControls.new(@dut) @search = AppleTvSearch.new(@dut) @product_page = AppleTvProductPage.new(@dut) @library = AppleTvLibrary.new(@dut) @movies = AppleTvMovies.new(@dut) @tv_shows = AppleTvTvShows.new(@dut) @video_store = AppleTvVideoStore.new(@dut) end |
Instance Attribute Details
#dvr ⇒ Object (readonly)
Returns the value of attribute dvr.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def dvr @dvr end |
#library ⇒ Object (readonly)
Returns the value of attribute library.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def library @library end |
#login ⇒ Object (readonly)
Returns the value of attribute login.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def login @login end |
#movies ⇒ Object (readonly)
Returns the value of attribute movies.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def movies @movies end |
#tv_shows ⇒ Object (readonly)
Returns the value of attribute tv_shows.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def tv_shows @tv_shows end |
#video_store ⇒ Object (readonly)
Returns the value of attribute video_store.
22 23 24 |
# File 'lib/screens/apple_tv/apple_tv_screens.rb', line 22 def video_store @video_store end |