Class: Mechanize::Page::Label

Inherits:
Object
  • Object
show all
Defined in:
lib/mechanize/page/label.rb

Overview

A form label on an HTML page

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node, page) ⇒ Label

Returns a new instance of Label.



11
12
13
14
15
# File 'lib/mechanize/page/label.rb', line 11

def initialize(node, page)
  @node = node
  @text = node.inner_text
  @page = page
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node.



6
7
8
# File 'lib/mechanize/page/label.rb', line 6

def node
  @node
end

#pageObject (readonly)

Returns the value of attribute page.



8
9
10
# File 'lib/mechanize/page/label.rb', line 8

def page
  @page
end

#textObject (readonly) Also known as: to_s

Returns the value of attribute text.



7
8
9
# File 'lib/mechanize/page/label.rb', line 7

def text
  @text
end

Instance Method Details

#forObject



17
18
19
# File 'lib/mechanize/page/label.rb', line 17

def for
  (id = @node['for']) && page.search("##{id}") || nil
end