Sha256: 1acd32511ae150b4d56be9ce55ba663c6a628bf4b707310553b1393d9f81715d
Contents?: true
Size: 396 Bytes
Versions: 31
Compression:
Stored size: 396 Bytes
Contents
## # 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". class Mechanize::Form::ImageButton < Mechanize::Form::Button attr_accessor :x, :y def initialize *args @x = nil @y = nil super end def query_value [["#{@name}.x", (@x || 0).to_s], ["#{@name}.y", (@y || 0).to_s]] end end
Version data entries
31 entries across 31 versions & 5 rubygems