Class: AndroidPhoneScreens

Inherits:
AndroidScreens show all
Defined in:
lib/screens/mobile/android/android_phone/android_phone_screens.rb

Overview

AndroidPhoneScreens adds to or modifies the Android screens with Android Phone-specific screens

Instance Attribute Summary

Attributes inherited from MobileScreens

#devices, #dvr, #favorites, #login

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) ⇒ AndroidPhoneScreens

Public: Initializes AndroidPhoneScreens. NOT FOR USE IN TESTS.



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/screens/mobile/android/android_phone/android_phone_screens.rb', line 15

def initialize(*args)
  super(*args)
  # Override screens here
  @on_demand = AndroidPhoneOnDemand.new(@dut)
  @main_menu = AndroidPhoneMainMenu.new(@dut)
  @live_tv = AndroidPhoneLiveTv.new(@dut)
  @search = AndroidPhoneSearch.new(@dut)
  @product_page = AndroidPhoneProductPage.new(@dut)
  @guide = AndroidPhoneGuide.new(@dut)
  @dvr = AndroidPhoneDvr.new(@dut)
end