Class: TestCentricity::PageObject
- Includes:
- Capybara::DSL, Capybara::Node::Matchers, Test::Unit::Assertions
- Defined in:
- lib/testcentricity_web/page_objects_helper.rb
Class Method Summary collapse
-
.button(element_name, locator) ⇒ Object
Declare and instantiate a button UI Element for this page object.
-
.checkbox(element_name, locator) ⇒ Object
Declare and instantiate a checkbox UI Element for this page object.
-
.element(element_name, locator) ⇒ Object
Declare and instantiate a generic UI Element for this page object.
-
.filefield(element_name, locator) ⇒ Object
Declare and instantiate a File Field UI Element for this page object.
-
.image(element_name, locator) ⇒ Object
Declare and instantiate an image UI Element for this page object.
-
.label(element_name, locator) ⇒ Object
Declare and instantiate a label UI Element for this page object.
-
.link(element_name, locator) ⇒ Object
Declare and instantiate a link UI Element for this page object.
-
.section(section_name, class_name, locator = nil) ⇒ Object
Instantiate a PageSection object for this page object.
-
.selectlist(element_name, locator) ⇒ Object
Declare and instantiate a select list UI Element for this page object.
-
.table(element_name, locator) ⇒ Object
Declare and instantiate a table UI Element for this page object.
-
.textfield(element_name, locator) ⇒ Object
Declare and instantiate a text field UI Element for this page object.
-
.trait(trait_name, &block) ⇒ Object
Define a trait for this page object.
Instance Method Summary collapse
-
#exists? ⇒ Boolean
Does Page object exists?.
- #load_page ⇒ Object
- #navigate_to ⇒ Object
- #open_portal ⇒ Object
-
#populate_data_fields(data) ⇒ Object
Populate the specified UI elements on this page with the associated data from a Hash passed as an argument.
-
#secure? ⇒ Boolean
Is current Page object URL secure?.
- #verify_page_contains(content) ⇒ Object
- #verify_page_exists ⇒ Object
- #verify_page_ui ⇒ Object
- #verify_ui_states(ui_states) ⇒ Object
Class Method Details
.button(element_name, locator) ⇒ Object
Declare and instantiate a button UI Element for this page object.
42 43 44 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 42 def self.(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::Button.new(self, "#{locator}", :page);end)) end |
.checkbox(element_name, locator) ⇒ Object
Declare and instantiate a checkbox UI Element for this page object.
66 67 68 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 66 def self.checkbox(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::CheckBox.new(self, "#{locator}", :page);end)) end |
.element(element_name, locator) ⇒ Object
Declare and instantiate a generic UI Element for this page object.
30 31 32 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 30 def self.element(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page);end)) end |
.filefield(element_name, locator) ⇒ Object
Declare and instantiate a File Field UI Element for this page object.
136 137 138 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 136 def self.filefield(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::FileField.new(self, "#{locator}", :page);end)) end |
.image(element_name, locator) ⇒ Object
Declare and instantiate an image UI Element for this page object.
125 126 127 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 125 def self.image(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::Image.new(self, "#{locator}", :page);end)) end |
.label(element_name, locator) ⇒ Object
Declare and instantiate a label UI Element for this page object.
78 79 80 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 78 def self.label(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::Label.new(self, "#{locator}", :page);end)) end |
.link(element_name, locator) ⇒ Object
Declare and instantiate a link UI Element for this page object.
90 91 92 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 90 def self.link(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::Link.new(self, "#{locator}", :page);end)) end |
.section(section_name, class_name, locator = nil) ⇒ Object
Instantiate a PageSection object for this page object.
147 148 149 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 147 def self.section(section_name, class_name, locator = nil) class_eval(%Q(def #{section_name.to_s};@#{section_name.to_s} ||= #{class_name.to_s}.new(self, "#{locator}", :page);end)) end |
.selectlist(element_name, locator) ⇒ Object
Declare and instantiate a select list UI Element for this page object.
113 114 115 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 113 def self.selectlist(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::SelectList.new(self, "#{locator}", :page);end)) end |
.table(element_name, locator) ⇒ Object
Declare and instantiate a table UI Element for this page object.
101 102 103 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 101 def self.table(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::Table.new(self, "#{locator}", :page);end)) end |
.textfield(element_name, locator) ⇒ Object
Declare and instantiate a text field UI Element for this page object.
54 55 56 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 54 def self.textfield(element_name, locator) class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::TextField.new(self, "#{locator}", :page);end)) end |
.trait(trait_name, &block) ⇒ Object
Define a trait for this page object.
18 19 20 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 18 def self.trait(trait_name, &block) define_method(trait_name.to_s, &block) end |
Instance Method Details
#exists? ⇒ Boolean
Does Page object exists?
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 201 def exists? saved_wait_time = .default_max_wait_time .default_max_wait_time = 0.1 tries ||= 2 attributes = [:id, :css, :xpath] type = attributes[tries] obj = page.find(type, page_locator) obj != nil rescue .default_max_wait_time = saved_wait_time retry if (tries -= 1) > 0 false ensure .default_max_wait_time = saved_wait_time end |
#load_page ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 176 def load_page return if exists? if defined?(page_url) && !page_url.nil? visit page_url begin page.driver.browser.switch_to.alert.accept rescue => e end unless Environ.browser == :safari || Environ.browser == :ie || Environ.is_device? else navigate_to end verify_page_exists PageManager.set_current_page(self) end |
#navigate_to ⇒ Object
172 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 172 def navigate_to; end |
#open_portal ⇒ Object
151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 151 def open_portal environment = Environ.current (environment.hostname.length > 0) ? url = "#{environment.hostname}/#{environment.base_url}#{environment.append}" : url = "#{environment.base_url}#{environment.append}" if environment.user_id.length > 0 && environment.password.length > 0 visit "#{environment.protocol}://#{environment.user_id}:#{environment.password}@#{url}" else visit "#{environment.protocol}://#{url}" end Environ.set_portal_state(:open) end |
#populate_data_fields(data) ⇒ Object
Populate the specified UI elements on this page with the associated data from a Hash passed as an argument. Data values must be in the form of a String for textfield and select list controls. For checkbox and radio buttons, data must either be a Boolean or a String that evaluates to a Boolean value (Yes, No, 1, 0, true, false)
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 278 def populate_data_fields(data) data.each do | data_field, data_param | unless data_param.blank? if data_param == '!DELETE' data_field.set('') else case data_field.get_object_type when :checkbox (data_field.get_siebel_object_type == 'JCheckBox') ? data_field.set_siebel_checkbox_state(data_param.to_bool) : data_field.set_checkbox_state(data_param.to_bool) when :selectlist (data_field.get_siebel_object_type == 'JComboBox') ? data_field.set("#{data_param}\t") : data_field.choose_option(data_param) when :textfield data_field.set("#{data_param}\t") end end end end end |
#secure? ⇒ Boolean
Is current Page object URL secure?
223 224 225 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 223 def secure? !current_url.match(/^https/).nil? end |
#verify_page_contains(content) ⇒ Object
191 192 193 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 191 def verify_page_contains(content) raise "Expected page to have content '#{content}'" unless page.has_content?(:visible, content) end |
#verify_page_exists ⇒ Object
164 165 166 167 168 169 170 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 164 def verify_page_exists unless page.has_selector?(page_locator) body_class = find(:xpath, '//body')[:class] = "Expected page to have selector '#{page_locator}' but found '#{body_class}' instead.\nURL of page loaded = #{URI.parse(current_url)}" raise end end |
#verify_page_ui ⇒ Object
174 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 174 def verify_page_ui; end |
#verify_ui_states(ui_states) ⇒ Object
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/testcentricity_web/page_objects_helper.rb', line 227 def verify_ui_states(ui_states) ui_states.each do | ui_object, object_states | object_states.each do | property, state | case property when :exists actual = ui_object.exists? when :enabled actual = ui_object.enabled? when :visible actual = ui_object.visible? when :readonly actual = ui_object.read_only? when :checked actual = ui_object.checked? when :value actual = ui_object.get_value when :maxlength actual = ui_object.get_max_length when :options actual = ui_object. when :siebel_options actual = ui_object. else if property.to_s.start_with? ('cell_') cell = property.to_s.gsub('cell_', '') cell = cell.split('_') actual = ui_object.get_table_cell(cell[0].to_i, cell[1].to_i) end end ExceptionQueue.enqueue_assert_equal(state, actual, "Expected #{ui_object.get_locator} #{property.to_s} property") end end ExceptionQueue.post_exceptions end |