Sha256: 1fbdee8a7f71b4a7d1f78837d2d8079d763418fee573a0d3ecf52c88a085f4ea
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
$_CONFIG = Hash.new ################################################################### # SYSTEM CONFIGURATION # ################################################################### $_CONFIG['Print Log'] = true $_CONFIG['Wait Time'] = 30 $_CONFIG['DeviceName'] = 'android' ################################################################### # DEVICE CONFIGURATION # ################################################################### IOS_APP_PATH = File.join(File.dirname(__FILE__), '../../apps/TestApp/build/release-iphonesimulator/TestApp.app') ANDROID_APP_PATH = File.join(File.dirname(__FILE__), '../../apps/Bedder_2.0_0.17_VN.apk') def capabilities_ios { 'platformName' => 'ios', 'deviceName' => 'iPad Air', 'platformVersion' => '8.3', 'app' => IOS_APP_PATH } end def capabilities_android { 'platformName' => 'android', 'deviceName' => '4b136e759558724e', 'fullReset' => 'true', 'noReset' => 'false', 'platformVersion' => '5.1.1', 'app' => ANDROID_APP_PATH } end ################################################################### # SERVER CONFIGURATION # ################################################################### def server_url "http://127.0.0.1:4723/wd/hub" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
Ifd_Mobile-0.1.7 | project/features/support/project_env.rb |