module MediTAF::UI
Enables MediTAF
to interact with the UI
via the page object model design pattern. It manages applications and their associated pages (i.e. page objects).
Public Class Methods
new(pages_root='pages')
click to toggle source
@param pages_root [String] specifies location of applications' pages. default location: pages
# File lib/MediTAF/ui.rb, line 9 def self.new(pages_root='pages') Applications.new('./' + Dir.glob(File.join("**", pages_root)).first) end