Class | WWW::Mechanize::Form::ImageButton |
In: |
lib/www/mechanize/form/image_button.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/www/mechanize/form/image_button.rb, line 9 9: def initialize(name, value) 10: @x = nil 11: @y = nil 12: super(name, value) 13: end