module Applitools::Calabash::FullPageCaptureAlgorithm

Constants

ANDROID_ALGORITHMS
IOS_ALGORITHMS

Public Class Methods

get_algorithm_class(env, klass) click to toggle source
# File lib/applitools/calabash/full_page_capture_algorithm.rb, line 15
def get_algorithm_class(env, klass)
  case env
  when :ios
    IOS_ALGORITHMS[klass]
  when :android
    ANDROID_ALGORITHMS[klass]
  end
end