Sha256: 8099c1ebbbcc3c6989b1b87538ffe24716689ab36818fb3eb687bb00881b8aa7

Contents?: true

Size: 1.26 KB

Versions: 16

Compression:

Stored size: 1.26 KB

Contents

module TestCentricity
  class List < UIElement
    attr_accessor :list_item

    def initialize(name, parent, locator, context)
      super
      @type = :list
      define_list_elements({ :list_item => 'li' })
    end

    def define_list_elements(element_spec)
      element_spec.each do |element, value|
        case element
        when :list_item
          @list_item = value
        end
      end
    end

    def get_list_items(element_spec = nil)
      define_list_elements(element_spec) unless element_spec.nil?
      obj, = find_element
      object_not_found_exception(obj, nil)
      obj.all(@list_item).collect(&:text)
    end

    def get_list_item(index)
      items = get_list_items
      items[index - 1]
    end

    def get_item_count
      obj, = find_element
      object_not_found_exception(obj, nil)
      obj.all(@list_item).count
    end

    def verify_list_items(expected, enqueue = false)
      actual = get_list_items
      enqueue ?
          ExceptionQueue.enqueue_assert_equal(expected, actual, "Expected list #{object_ref_message}") :
          assert_equal(expected, actual, "Expected list #{object_ref_message} to be #{expected} but found #{actual}")
    end

    def get_list_row_locator(row)
      "#{@locator}/#{@list_item}[#{row}]"
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
testcentricity_web-2.1.10 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.1.9 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.1.2 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.1.1 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.1.0 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.23 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.21 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.20.1 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.20 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.19 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.18 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.17 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.16 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.15 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.14 lib/testcentricity_web/elements/list.rb
testcentricity_web-2.0.13 lib/testcentricity_web/elements/list.rb