module SeleniumPage

SeleniumPage

Public Class Methods

configure_scheme_and_authority(scheme_and_authority) click to toggle source
# File lib/selenium_page.rb, line 14
def self.configure_scheme_and_authority(scheme_and_authority)
  unless scheme_and_authority.is_a? String
    raise Errors::UnexpectedSchemeAndAuthority
  end

  @scheme_and_authority = scheme_and_authority
end
configure_wait_time(wait_time) click to toggle source
# File lib/selenium_page.rb, line 26
def self.configure_wait_time(wait_time)
  raise Errors::UnexpectedWaitTime unless wait_time.is_a? Numeric

  @wait_time = wait_time
end
scheme_and_authority() click to toggle source
# File lib/selenium_page.rb, line 22
def self.scheme_and_authority
  @scheme_and_authority
end
wait_time() click to toggle source
# File lib/selenium_page.rb, line 32
def self.wait_time
  @wait_time
end