Class: Mechanize::Form::ImageButton

Inherits:
Button show all
Defined in:
lib/mechanize/form/image_button.rb

Overview

This class represents an image button in a form. Use the x and y methods to set the x and y positions for where the mouse “clicked”.

Instance Attribute Summary collapse

Attributes inherited from Field

#name, #node, #value

Instance Method Summary collapse

Methods inherited from Field

#<=>, #dom_id

Constructor Details

#initialize(*args) ⇒ ImageButton

Returns a new instance of ImageButton.



8
9
10
11
12
# File 'lib/mechanize/form/image_button.rb', line 8

def initialize *args
  @x = nil
  @y = nil
  super
end

Instance Attribute Details

#xObject

Returns the value of attribute x.



6
7
8
# File 'lib/mechanize/form/image_button.rb', line 6

def x
  @x
end

#yObject

Returns the value of attribute y.



6
7
8
# File 'lib/mechanize/form/image_button.rb', line 6

def y
  @y
end

Instance Method Details

#query_valueObject



14
15
16
17
# File 'lib/mechanize/form/image_button.rb', line 14

def query_value
  [["#{@name}.x", (@x || 0).to_s],
   ["#{@name}.y", (@y || 0).to_s]]
end