class Capybara::UI::TextField

A text field.

Public Instance Methods

content?() click to toggle source
# File lib/capybara/ui/widgets/text_field.rb, line 24
def content?
  get.respond_to?(:empty?) ? ! get.empty? : !! get
end
to_cell() click to toggle source
# File lib/capybara/ui/widgets/text_field.rb, line 20
def to_cell
  get
end