| Class | WWW::Mechanize::ImageButton |
| In: |
lib/mechanize/form_elements.rb
|
| Parent: | Button |
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".
| x | [RW] | |
| y | [RW] |
# File lib/mechanize/form_elements.rb, line 54
54: def initialize(name, value)
55: @x = nil
56: @y = nil
57: super(name, value)
58: end