Class: IosTabletScreens

Inherits:
IosScreens show all
Defined in:
lib/screens/mobile/ios/ios_tablet/ios_tablet_screens.rb

Overview

IosTabletScreens adds to or modifies the iOS screens with iOS Tablet-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) ⇒ IosTabletScreens

Public: Initializes IosTabletScreens. NOT FOR USE IN TESTS.



11
12
13
14
15
16
17
# File 'lib/screens/mobile/ios/ios_tablet/ios_tablet_screens.rb', line 11

def initialize(*args)
  super(*args)
  # Override screens here
  @on_demand = IosTabletOnDemand.new(@dut)
  @live_tv = IosTabletLiveTv.new(@dut)
  @search = IosTabletSearch.new(@dut)
end