Sha256: 1c156fc10ce300ebeea9f7ee63eb181ed3090920dabefb4c256f9c67676075a7
Contents?: true
Size: 1.34 KB
Versions: 18
Compression:
Stored size: 1.34 KB
Contents
module TestCentricity class ListElement < UIElement attr_accessor :list attr_accessor :element_locator def initialize(name, parent, locator, context, list, proxy = nil) @name = name @parent = parent @context = context @alt_locator = nil @list = list @element_locator = locator locator.nil? ? @locator = list.get_list_row_locator('ROW_SPEC') : @locator = "#{list.get_list_row_locator('ROW_SPEC')}/#{@element_locator}" end def exists?(row) obj, = find_list_element(row) obj != nil end def click(row) obj, = find_list_element(row) list_object_not_found_exception(obj, @type, row) obj.click end def get_value(row, visible = true) obj, = find_list_element(row, visible) list_object_not_found_exception(obj, @type, row) case obj.tag_name.downcase when 'input', 'select', 'textarea' obj.value else obj.text end end alias get_caption get_value def find_list_element(row, visible = true) set_alt_locator("#{@locator.gsub('ROW_SPEC', row.to_s)}") find_element(visible) end def list_object_not_found_exception(obj, obj_type, row) object_not_found_exception(obj, "Row #{row} #{obj_type}") end end end
Version data entries
18 entries across 18 versions & 1 rubygems