Sha256: ef2de0c50b529016bd70234c146f1c6f24784aeb5f2d7974a4cfe8ec8bf9d534
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 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_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 end end
Version data entries
4 entries across 4 versions & 1 rubygems