Class: DtaScreens

Inherits:
Screens show all
Defined in:
lib/screens/dta/dta_screens.rb

Overview

Adds to or modifies the screens with Dta-specific screens.

Instance Attribute Summary collapse

Attributes inherited from Screens

#guide, #live_tv, #main_menu, #mini_guide, #on_demand, #parental_controls, #product_page, #search, #settings

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ DtaScreens

Public: Initializes DtaScreens. NOT FOR USE IN TESTS.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/screens/dta/dta_screens.rb', line 29

def initialize(*args)
  super(*args)
  @dvr = DtaDvr.new(@dut)
  @guide = DtaGuide.new(@dut)
  @library = DtaLibrary.new(@dut)
  @log_in = DtaLog_in.new(@dut)
  @live_tv = DtaLive_tv.new(@dut)
  @main_menu = DtaMain_menu.new(@dut)
  @mini_guide = DtaMini_guide.new(@dut)
  @movies = DtaMovies.new(@dut)
  @on_demand = DtaOn_demand.new(@dut)
  @parental_controls = DtaParental_controls.new(@dut)
  @product_page = DtaProduct_page.new(@dut)
  @search = DtaSearch.new(@dut)
  @settings = DtaSettings.new(@dut)
  @tv_shows = DtaTv_shows.new(@dut)
  @video_store = DtaVideo_store.new(@dut)

end

Instance Attribute Details

#dvrObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def dvr
  @dvr
end

#libraryObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def library
  @library
end

#loginObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def 
  @login
end

#moviesObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def movies
  @movies
end

#tv_showsObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def tv_shows
  @tv_shows
end

#video_storeObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/dta/dta_screens.rb', line 26

def video_store
  @video_store
end