Class: CapybaraPageObject::FormField

Inherits:
Element show all
Defined in:
lib/capybara-page-object/elements/form_field.rb

Direct Known Subclasses

Input, Select

Instance Attribute Summary

Attributes inherited from Node

#source

Instance Method Summary collapse

Methods included from HTML5Data

#data

Methods included from Collections

#key, #value

Methods inherited from Node

#classes, element, field, from_string, #initialize

Methods included from Delegators

#all, #find, #text

Constructor Details

This class inherits a constructor from CapybaraPageObject::Node

Instance Method Details

#blank?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/capybara-page-object/elements/form_field.rb', line 6

def blank?
  value.nil? || '' == value
end