Skip to content

appium/ruby_lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4ce71f8 Â· Apr 21, 2015
Dec 23, 2014
Jan 26, 2015
May 13, 2014
Mar 27, 2015
Apr 21, 2015
Mar 28, 2013
Nov 25, 2013
Mar 19, 2013
Apr 21, 2015
Apr 21, 2015
Dec 3, 2014
Apr 1, 2015
Jan 26, 2015

Repository files navigation

Downloads Pull Requests Issues

appium_lib Gem VersionDependency Status

Helper methods for writing cross platform (iOS, Android) tests in Ruby using Appium. Note that user waits should not exceed 120 seconds if they're going to run on Sauce Labs.

Make sure you're using Appium 1.0.0 or newer and Ruby 1.9.3+ with upgraded rubygems and bundler.

Start appium server

node .

Install / Upgrade

Update rubygems and bundler.

gem update --system ;\
gem update bundler

Install the latest gem release.

gem uninstall -aIx appium_lib ;\
gem install --no-rdoc --no-ri appium_lib

Sauce Labs env vars

  • SAUCE_USERNAME Sauce username
  • SAUCE_ACCESS_KEY Sauce API key

Troubleshooting

  1. Does adb kill-server; adb devices list an active Android device?
  2. Are you running appium from source? node .

Documentation

Logging

Log level can be adjusted. The default level is Logger::WARN

Appium::Logger.level = Logger::INFO