Class: TestCentricity::PageManager
Instance Attribute Summary collapse
-
#current_page ⇒ Object
Returns the value of attribute current_page.
Class Method Summary collapse
-
.current_page ⇒ PageObject
Get the currently active PageObject.
-
.current_page=(page) ⇒ Object
Sets the currently active PageObject.
- .find_page(page_name) ⇒ Object
-
.loaded? ⇒ Boolean
Have all PageObjects been registered?.
- .register_page_objects(pages) ⇒ Object
Instance Attribute Details
#current_page ⇒ Object
Returns the value of attribute current_page.
62 63 64 |
# File 'lib/testcentricity.rb', line 62 def current_page @current_page end |
Class Method Details
.current_page ⇒ PageObject
Get the currently active PageObject
105 106 107 |
# File 'lib/testcentricity.rb', line 105 def self.current_page @current_page end |
.current_page=(page) ⇒ Object
Sets the currently active PageObject
115 116 117 |
# File 'lib/testcentricity.rb', line 115 def self.current_page=(page) @current_page = page end |
.find_page(page_name) ⇒ Object
94 95 96 97 |
# File 'lib/testcentricity.rb', line 94 def self.find_page(page_name) (page_name.is_a? String) ? page_id = page_name.gsub(/\s+/, '').downcase.to_sym : page_id = page_name @page_objects[page_id] end |
.loaded? ⇒ Boolean
Have all PageObjects been registered?
90 91 92 |
# File 'lib/testcentricity.rb', line 90 def self.loaded? !@page_objects.empty? end |
.register_page_objects(pages) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/testcentricity.rb', line 66 def self.register_page_objects(pages) result = '' pages.each do |page_object, page_class| obj = page_class.new @page_objects[page_object] = obj unless @page_objects.has_key?(page_object) page_names = obj.page_name page_names = Array(page_names) if page_names.is_a? String page_names.each do |name| page_key = name.gsub(/\s+/, '').downcase.to_sym if page_key != page_object @page_objects[page_key] = obj unless @page_objects.has_key?(page_key) end result = "#{result}def #{page_object};@#{page_object} ||= TestCentricity::PageManager.find_page(:#{page_object});end;" end end result end |