Class: TestCentricity::PageObject

Inherits:
Object
  • Object
show all
Includes:
Capybara::DSL, Capybara::Node::Matchers, RSpec::Matchers, Test::Unit::Assertions
Defined in:
lib/testcentricity_web/page_objects_helper.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.button(element_name, locator) ⇒ Object



16
17
18
# File 'lib/testcentricity_web/page_objects_helper.rb', line 16

def self.button(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :button);end))
end

.checkbox(element_name, locator) ⇒ Object



24
25
26
# File 'lib/testcentricity_web/page_objects_helper.rb', line 24

def self.checkbox(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :checkbox);end))
end

.element(element_name, locator) ⇒ Object



12
13
14
# File 'lib/testcentricity_web/page_objects_helper.rb', line 12

def self.element(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, nil);end))
end

.image(element_name, locator) ⇒ Object



44
45
46
# File 'lib/testcentricity_web/page_objects_helper.rb', line 44

def self.image(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :image);end))
end

.label(element_name, locator) ⇒ Object



28
29
30
# File 'lib/testcentricity_web/page_objects_helper.rb', line 28

def self.label(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :label);end))
end


32
33
34
# File 'lib/testcentricity_web/page_objects_helper.rb', line 32

def self.link(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :link);end))
end

.section(section_name, class_name, locator = nil) ⇒ Object



48
49
50
# File 'lib/testcentricity_web/page_objects_helper.rb', line 48

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



40
41
42
# File 'lib/testcentricity_web/page_objects_helper.rb', line 40

def self.selectlist(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :selectlist);end))
end

.table(element_name, locator) ⇒ Object



36
37
38
# File 'lib/testcentricity_web/page_objects_helper.rb', line 36

def self.table(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :table);end))
end

.textfield(element_name, locator) ⇒ Object



20
21
22
# File 'lib/testcentricity_web/page_objects_helper.rb', line 20

def self.textfield(element_name, locator)
  class_eval(%Q(def #{element_name.to_s};@#{element_name.to_s} ||= TestCentricity::UIElement.new(self, "#{locator}", :page, :textfield);end))
end

.trait(trait_name, &block) ⇒ Object



8
9
10
# File 'lib/testcentricity_web/page_objects_helper.rb', line 8

def self.trait(trait_name, &block)
  define_method(trait_name.to_s, &block)
end

Instance Method Details

#exists?Boolean

Returns:

  • (Boolean)


100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/testcentricity_web/page_objects_helper.rb', line 100

def exists?
  saved_wait_time = Capybara.default_max_wait_time
  Capybara.default_max_wait_time = 0.1
  tries ||= 2
  attributes = [:id, :css, :xpath]
  type = attributes[tries]
  obj = page.find(type, page_locator)
  obj != nil
rescue
  Capybara.default_max_wait_time = saved_wait_time
  retry if (tries -= 1) > 0
  false
ensure
  Capybara.default_max_wait_time = saved_wait_time
end

#load_pageObject



77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/testcentricity_web/page_objects_helper.rb', line 77

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


73
# File 'lib/testcentricity_web/page_objects_helper.rb', line 73

def navigate_to; end

#open_portalObject



52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/testcentricity_web/page_objects_helper.rb', line 52

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

#secure?Boolean

Returns:

  • (Boolean)


116
117
118
# File 'lib/testcentricity_web/page_objects_helper.rb', line 116

def secure?
  !current_url.match(/^https/).nil?
end

#take_screen_shot(page_name, context) ⇒ Object



92
93
94
# File 'lib/testcentricity_web/page_objects_helper.rb', line 92

def take_screen_shot(page_name, context)
  save_page_screen_shot(page_name, context)
end

#verify_page_contains(content) ⇒ Object



96
97
98
# File 'lib/testcentricity_web/page_objects_helper.rb', line 96

def verify_page_contains(content)
  raise "Expected page to have content '#{content}'" unless page.has_content?(:visible, content)
end

#verify_page_existsObject



65
66
67
68
69
70
71
# File 'lib/testcentricity_web/page_objects_helper.rb', line 65

def verify_page_exists
  unless page.has_selector?(page_locator)
    body_class = find(:xpath, '//body')[:class]
    error_message = "Expected page to have selector '#{page_locator}' but found '#{body_class}' instead.\nURL of page loaded = #{URI.parse(current_url)}"
    raise error_message
  end
end

#verify_page_uiObject



75
# File 'lib/testcentricity_web/page_objects_helper.rb', line 75

def verify_page_ui; end

#verify_ui_states(ui_states) ⇒ Object



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/testcentricity_web/page_objects_helper.rb', line 120

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.get_options
        when :siebel_options
          actual = ui_object.get_siebel_options
        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