module Cello::PageObjects::IframeHelper
Public Instance Methods
iframe(name, elements, *args)
click to toggle source
# File lib/cello/pageobjects/html_elements/iframe_helper.rb, line 9 def iframe name, elements, *args class_eval do include elements define_method name do engine.browser.iframe(*args) end end end