class PageObject::Elements::Video

Public Instance Methods

height() click to toggle source
# File lib/page-object/elements/video.rb, line 5
def height
  height = attribute(:height)
  return height.to_i if height
end
width() click to toggle source
# File lib/page-object/elements/video.rb, line 10
def width
  width = attribute(:width)
  return width.to_i if width
end