class Kitchen::NoteElementEnumerator

An enumerator for note elements

Public Class Methods

factory() click to toggle source

Returns a factory for this enumerator

@return [ElementEnumeratorFactory]

# File lib/kitchen/note_element_enumerator.rb, line 12
def self.factory
  ElementEnumeratorFactory.new(
    default_css_or_xpath: Selector.named(:note),
    sub_element_class: NoteElement,
    enumerator_class: self
  )
end