Sha256: 96eb2c10cd52f51d4a1b58177ef7032d170342a15d368fa54a1d1858d84d9410

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

module PageObject
  module IndexedProperties
    class TableOfElements
      include PageObject
      include LoadsPlatform

      def initialize (browser, identifier_list)
        initialize_browser(browser)
        @identifier_list = identifier_list
        @indexed_property_class = Class.new {
          include PageObject
          include LoadsPlatform
          extend Accessors

          def initialize (browser, index, identifier_list)
            initialize_browser(browser)

            identifier_list.each do |identifier|
              type = identifier[0]
              name = identifier[1]
              how_and_what = identifier[2].clone # Cannot modify the original...
              how_and_what.each do |key, value|
                next if value.is_a? Regexp # Cannot format Regexp with %
                if key == :index
                  how_and_what[key] = (value % index).to_i
                else
                  how_and_what[key] = value % index
                end
              end
              self.class.send type, name, how_and_what unless Class.instance_methods.include? name
            end
          end
        }
      end

      def [] (index)
        @indexed_property_class.new(@browser, index, @identifier_list)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-2.1.1 lib/page-object/indexed_properties.rb
page-object-2.1 lib/page-object/indexed_properties.rb