├── .gitignore ├── .rspec ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── android ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── vbanthia │ │ │ └── androidsampleapp │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── vbanthia │ │ │ └── androidsampleapp │ │ │ └── MainActivity.java │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── apks └── android-sample-app.apk ├── calculator_app.png ├── docs ├── EASY_SETUP.md └── calculator_app.png ├── logs └── .gitkeep ├── scripts └── run_integration_test.sh └── spec ├── features ├── addition_spec.rb ├── division_spec.rb ├── multiplication_spec.rb └── subtraction_spec.rb ├── spec_helper.rb └── support ├── extns └── screenshot_embedded_html_formatter.rb └── screenshot.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/.rspec -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/Vagrantfile -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/vbanthia/androidsampleapp/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/androidTest/java/com/vbanthia/androidsampleapp/ApplicationTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/vbanthia/androidsampleapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/java/com/vbanthia/androidsampleapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/android/local.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apks/android-sample-app.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/apks/android-sample-app.apk -------------------------------------------------------------------------------- /calculator_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/calculator_app.png -------------------------------------------------------------------------------- /docs/EASY_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/docs/EASY_SETUP.md -------------------------------------------------------------------------------- /docs/calculator_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/docs/calculator_app.png -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/run_integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/scripts/run_integration_test.sh -------------------------------------------------------------------------------- /spec/features/addition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/features/addition_spec.rb -------------------------------------------------------------------------------- /spec/features/division_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/features/division_spec.rb -------------------------------------------------------------------------------- /spec/features/multiplication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/features/multiplication_spec.rb -------------------------------------------------------------------------------- /spec/features/subtraction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/features/subtraction_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/extns/screenshot_embedded_html_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/support/extns/screenshot_embedded_html_formatter.rb -------------------------------------------------------------------------------- /spec/support/screenshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbanthia-zz/appium-docker-demo/HEAD/spec/support/screenshot.rb --------------------------------------------------------------------------------