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/ole_qa_framework/VERSION.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: Common_Object, Data_Object, Error, Line_Object, Page, Session, Subline_Object

Constant Summary collapse

VERSION =

The version number for this project.

'2.7.2'
OLE_VERSION =

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

'1.0.0 - M2-r13245 :: 2013-07-24 (Unification)'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.doc_waitObject (readonly)

Returns the value of attribute doc_wait.



69
70
71
# File 'lib/ole-qa-framework.rb', line 69

def doc_wait
  @doc_wait
end

.explicit_waitObject (readonly)

Returns the value of attribute explicit_wait.



69
70
71
# File 'lib/ole-qa-framework.rb', line 69

def explicit_wait
  @explicit_wait
end

Class Method Details

.load_dirObject

Return absolute path from which the file was run



30
31
32
# File 'lib/ole-qa-framework.rb', line 30

def self.load_dir
  @libdir
end

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

Load libraries from absolute path



35
36
37
38
39
# File 'lib/ole-qa-framework.rb', line 35

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