Method: Capybara::Node::Simple#title

Defined in:
lib/capybara/node/simple.rb

#titleObject



151
152
153
154
155
156
157
158
# File 'lib/capybara/node/simple.rb', line 151

def title
  if native.respond_to? :title
    native.title
  else
    #old versions of nokogiri don't have #title - remove in 3.0
    native.xpath('/html/head/title | /html/title').first.text
  end
end