Sha256: 498695cbbf4b8b2a087c6186d0a79c7b985eb0c5aa98da01548e3f879a201dcd
Contents?: true
Size: 424 Bytes
Versions: 7
Compression:
Stored size: 424 Bytes
Contents
module PageObject module Elements class Canvas < Element # # return the width of the canvas # def width attribute(:width).to_i end # # return the height of the canvas # def height attribute(:height).to_i end end ::PageObject::Elements.type_to_class[:canvas] = ::PageObject::Elements::Canvas end end
Version data entries
7 entries across 7 versions & 2 rubygems