Sha256: 715e13f3747825fc2087a4f278f6a63c4961df2d7a5015636acd276432f83f61

Contents?: true

Size: 580 Bytes

Versions: 1

Compression:

Stored size: 580 Bytes

Contents

# Page Object class definition for Indexed Sections page with CSS locators

class IndexedSectionsPage < BaseTestPage
  trait(:page_name)    { 'Indexed Sections' }
  trait(:page_locator) { 'div.indexed-sections-page-body' }
  trait(:page_url)     { '/indexed_sections_page.html' }
  trait(:navigator)    { header_nav.open_indexed_sections_page }

  def verify_page_ui
    ui = {
      self         => { exists: true, secure: false, title: 'Indexed Sections Page' },
      header_label => { visible: true, caption: 'Indexed Sections Page' }
    }
    verify_ui_states(ui)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testcentricity_web-4.1.7 features/support/pages/indexed_sections_page.rb