Class: LdsSummaryView
Instance Method Summary
collapse
Methods inherited from LdsScreen
#getElement, #getIdScreen, #getRootTitle, #getTitle, #getType, #isExist?, #isVisible?, #refresh, #to_s
Constructor Details
#initialize(browser, idScreen) ⇒ LdsSummaryView
Returns a new instance of LdsSummaryView.
7
8
9
10
11
12
13
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 7
def initialize(browser, idScreen)
@browser =browser
@idScreen=idScreen
@type='summary'
update
@exists
end
|
Instance Method Details
#click ⇒ Object
32
33
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 32
def click
end
|
#clickSetting ⇒ Object
36
37
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 36
def clickSetting
end
|
#clickYesNo ⇒ Object
40
41
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 40
def clickYesNo
end
|
#closeRootTab ⇒ Object
38
39
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 38
def closeRootTab
end
|
#closeTab ⇒ Object
34
35
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 34
def closeTab
end
|
30
31
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 30
def
end
|
15
16
17
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 15
def
puts "Screen Type: "+self.to_s
end
|
#update ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/TNR360/components/lds_summary_view.rb', line 18
def update
@exists=false
@current_element||= findElement @idScreen
@idScreen
@exists=true
end
|