StackTips

Sample env.rb File for Setting up Android Testing Using Appium and Ruby

stacktips avtar

Written by:

Editorial,  2 min read,  updated on September 17, 2023

This env.rb file provides setup and common functionality across all features. It’s included first before every test run, and the methods provided here can be used in any of the step definitions used in a test.

This is a great place to put shared data like the location of your app, the capabilities you want to test with, and the setup of selenium.

require 'appium_lib'
require 'cucumber'
require 'require_all'

require_all 'lib'
class AppiumWorld
end

caps = {
  caps: {
    'platformName' => ENV['PLATFORM'],
    'platformVersion' => ENV['VERSION'],
    'deviceName' => ENV['DEVICE'],
    ENV['METHOD'] => ENV['METHOD'],
    'app' => ENV['APP_PATH'],
    'newCommandTimeout' => '200'
  }
}

Appium::Driver.new(caps)
Appium.promote_appium_methods AppiumWorld

World { AppiumWorld.new }

def app
  @app = AppBase.new($driver)
end

Before { $driver.start_driver }
After { $driver.driver_quit }