Method: PageObject.add_framework
- Defined in:
- lib/page-object.rb
.add_framework(key, framework) ⇒ Object
Add a new javascript framework to page-object. The module passed in must adhere to the same prototype as the JQuery and Prototype modules.
subsequent calls the required actions.
131 132 133 |
# File 'lib/page-object.rb', line 131 def self.add_framework(key, framework) PageObject::JavascriptFrameworkFacade.add_framework(key, framework) end |