Method: CommonFunctions.get_credentials

Defined in:
lib/common_functions.rb

.get_credentials(testing) ⇒ Object



239
240
241
242
243
244
245
# File 'lib/common_functions.rb', line 239

def self.get_credentials(testing)
  if testing
    return DEFAULT_USERNAME, DEFAULT_PASSWORD
  else
    return CommonFunctions.get_email, CommonFunctions.get_password
  end
end