module AppPrism

require_relative 'elements/elements_collection' require_relative 'sections/section_finders' require_relative 'sections/screen_section' require_relative 'sections/sections_collection'

Constants

VERSION

Public Class Methods

included(cls) click to toggle source
# File lib/app_prism.rb, line 18
def self.included(cls)
  cls.include AppPrism::HelperMethods
  cls.include AppPrism::ScreenFactory
  cls.extend AppPrism::Finders
  cls.extend AppPrism::Sections::SectionFinders
end
new(driver) click to toggle source
# File lib/app_prism.rb, line 14
def initialize(driver)
  @platform = AppPrism::Platforms::AppiumPlatform.new(driver)
end