class Kitchen::ReferenceElementEnumerator

An enumerator for table elements

Public Class Methods

factory() click to toggle source

Returns a factory for this enumerator

@return [ElementEnumeratorFactory]

# File lib/kitchen/references_element_enumerator.rb, line 11
def self.factory
  ElementEnumeratorFactory.new(
    default_css_or_xpath: Selector.named(:reference),
    sub_element_class: ReferenceElement,
    enumerator_class: self
  )
end