Method: PageObject::SectionCollection#find_by
- Defined in:
- lib/page-object/sections.rb
#find_by(values_hash) ⇒ Object
17 18 19 20 21 |
# File 'lib/page-object/sections.rb', line 17 def find_by values_hash @sections.find {|section| values_hash.all? {|method,value| value === section.public_send(method)} } end |