Module: OLE_QA::Framework

Defined in:
lib/common/data_object.rb,
lib/ole-qa-framework.rb,
lib/common/line_object.rb,
lib/common/common_object.rb,
lib/common/subline_object.rb,
lib/data_factory/bib_factory.rb,
lib/ole_qa_framework/VERSION.rb,
lib/data_factory/string_factory.rb,
lib/data_factory/account_factory.rb,
lib/ole_qa_framework/COMPATIBILITY.rb,
lib/common/page.rb

Overview

Copyright 2005-2013 The Kuali Foundation

Licensed under the Educational Community License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at:

  http://www.opensource.org/licenses/ecl2.php

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Defined Under Namespace

Modules: Data_Helpers, Helpers, OLEFS, OLELS, Page_Helpers Classes: Account_Factory, Bib_Factory, Common_Object, Data_Object, Error, Line_Object, Page, Session, String_Factory, Subline_Object

Constant Summary collapse

VERSION =

The version number for this project.

'3.4.5'
OLE_VERSION =

The most recent version of OLE with which this framework was tested for compatibility.

'1.5.0 - M2 (Rice Upgrade 2.3.2)'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.doc_waitObject (readonly)

Returns the value of attribute doc_wait.



81
82
83
# File 'lib/ole-qa-framework.rb', line 81

def doc_wait
  @doc_wait
end

.explicit_waitObject (readonly)

Returns the value of attribute explicit_wait.



81
82
83
# File 'lib/ole-qa-framework.rb', line 81

def explicit_wait
  @explicit_wait
end

Class Method Details

.data_dirObject

Return absolute path for data directory



39
40
41
# File 'lib/ole-qa-framework.rb', line 39

def self.data_dir
  @datadir
end

.load_dirObject

Return absolute path from which the file was run



34
35
36
# File 'lib/ole-qa-framework.rb', line 34

def self.load_dir
  @libdir
end

.load_libs(filedir, filename = "*.rb") ⇒ Object

Load libraries from absolute path



44
45
46
47
48
# File 'lib/ole-qa-framework.rb', line 44

def self.load_libs(filedir, filename = "*.rb")
  Dir[@libdir + filedir + filename].sort.each do |file|
    require file
  end
end