Class: DtaScreens
Overview
Adds to or modifies the screens with Dta-specific screens.
Instance Attribute Summary collapse
-
#dvr ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#library ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#login ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#movies ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#tv_shows ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#video_store ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
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) ⇒ DtaScreens
constructor
Public: Initializes DtaScreens.
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
#dvr ⇒ Object (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 |
#library ⇒ Object (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 |
#login ⇒ Object (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 @login end |
#movies ⇒ Object (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_shows ⇒ Object (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_store ⇒ Object (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 |