Class: SaraScreens
Overview
Adds to or modifies the screens with Sara-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) ⇒ SaraScreens
constructor
Public: Initializes SaraScreens.
Constructor Details
#initialize(*args) ⇒ SaraScreens
Public: Initializes SaraScreens. 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/sara/sara_screens.rb', line 29 def initialize(*args) super(*args) @dvr = SaraDvr.new(@dut) @guide = SaraGuide.new(@dut) @library = SaraLibrary.new(@dut) @log_in = SaraLog_in.new(@dut) @live_tv = SaraLive_tv.new(@dut) @main_menu = SaraMain_menu.new(@dut) @mini_guide = SaraMini_guide.new(@dut) @movies = SaraMovies.new(@dut) @on_demand = SaraOn_demand.new(@dut) @parental_controls = SaraParental_controls.new(@dut) @product_page = SaraProduct_page.new(@dut) @search = SaraSearch.new(@dut) @settings = SaraSettings.new(@dut) @tv_shows = SaraTv_shows.new(@dut) @video_store = SaraVideo_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/sara/sara_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/sara/sara_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/sara/sara_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/sara/sara_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/sara/sara_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/sara/sara_screens.rb', line 26 def video_store @video_store end |