class AutomationObject::PageObject::Configuration
Public Class Methods
base_url(url)
click to toggle source
Set base url @param url [String] base url
# File lib/automation_object/page_object/configuration.rb, line 9 def base_url(url) set_property(:base_url, url) end
default_screen(name)
click to toggle source
@param name [Const]
# File lib/automation_object/page_object/configuration.rb, line 14 def default_screen(name) set_property(:default_screen, name) end
screen_transition_sleep(time)
click to toggle source
@param time [Numeric]
# File lib/automation_object/page_object/configuration.rb, line 19 def screen_transition_sleep(time) set_property(:screen_transition_sleep, time) end
throttle_driver_methods(hash)
click to toggle source
@param hash [Hash]
# File lib/automation_object/page_object/configuration.rb, line 24 def throttle_driver_methods(hash) set_property(:throttle_driver_methods, hash) end
throttle_element_methods(hash)
click to toggle source
@param hash [Hash]
# File lib/automation_object/page_object/configuration.rb, line 29 def throttle_element_methods(hash) set_property(:throttle_element_methods, hash) end