├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── NOTICE ├── Rakefile ├── _config.yml ├── _includes ├── doc_list.md ├── footer.html ├── head.html └── navbar.html ├── _layouts └── default.html ├── contributing.md ├── css ├── appium.css ├── custom.css ├── font-awesome-4.0.3 │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── pygments.css └── template.css ├── index.md ├── lib ├── module_set.rb ├── support │ ├── helpers.rb │ ├── helpers │ │ ├── custom_helpers.rb │ │ └── file_helpers.rb │ └── requires.rb └── tutorial.rb ├── modules └── en │ └── source │ ├── appium │ ├── 01_native_ios_automation │ │ ├── 01_getting_started_with_appium │ │ │ ├── 01_introduction.md │ │ │ ├── 02_installation.md │ │ │ ├── 03_helpful_links.md │ │ │ └── 04_summary.md │ │ ├── 02_appium_ruby_console │ │ │ ├── 01_introduction.md │ │ │ ├── 02_compiling_the_ios_sample_app.md │ │ │ ├── 03_prebuilt_ios_sample_app.md │ │ │ ├── 04_starting_the_console.md │ │ │ ├── 05_page_command.md │ │ │ ├── 06_ending_the_session.md │ │ │ ├── 07_appium.app_inspector.md │ │ │ ├── 08_helpful_links.md │ │ │ └── 09_summary.md │ │ ├── 03_writing_your_first_test │ │ │ ├── 01_introduction.md │ │ │ ├── 02_automating_a_simple_action.md │ │ │ ├── 03_page_object_pattern.md │ │ │ ├── 04_running_the_test_with_rake.md │ │ │ ├── 05_helpful_links.md │ │ │ └── 06_summary.md │ │ ├── 04_running_tests │ │ │ ├── 01_introduction.md │ │ │ ├── 02_flaky_gem.md │ │ │ ├── 03_running_locally.md │ │ │ ├── 04_running_using_jenkins_ci.md │ │ │ ├── 05_running_on_sauce.md │ │ │ ├── 06_helpful_links.md │ │ │ └── 07_summary.md │ │ └── 05_conclusion │ │ │ ├── 01_introduction.md │ │ │ ├── 02_additional_resources.md │ │ │ ├── 03_community_support.md │ │ │ ├── 04_professional_support.md │ │ │ ├── 05_searching_the_source_code.md │ │ │ ├── 06_helpful_links.md │ │ │ └── 07_summary.md │ └── 02_native_android_automation │ │ ├── 01_getting_started_with_appium │ │ ├── 01_introduction.md │ │ ├── 02_installation.md │ │ ├── 03_android_sdk.md │ │ ├── 04_helpful_links.md │ │ └── 05_summary.md │ │ ├── 02_appium_ruby_console │ │ ├── 01_introduction.md │ │ ├── 02_compiling_the_android_sample_app.md │ │ ├── 03_prebuilt_android_sample_app.md │ │ ├── 04_starting_the_console.md │ │ ├── 05_page_command.md │ │ ├── 06_ending_the_session.md │ │ ├── 07_appium.app_inspector.md │ │ ├── 08_uiautomatorviewer.md │ │ ├── 09_helpful_links.md │ │ └── 10_summary.md │ │ ├── 03_writing_your_first_test │ │ ├── 01_introduction.md │ │ ├── 02_automating_a_simple_action.md │ │ ├── 03_page_object_pattern.md │ │ ├── 04_running_the_test_with_rake.md │ │ ├── 05_helpful_links.md │ │ └── 06_summary.md │ │ ├── 04_running_tests │ │ ├── 01_introduction.md │ │ ├── 02_flaky_gem.md │ │ ├── 03_running_locally.md │ │ ├── 04_running_using_jenkins_ci.md │ │ ├── 05_running_on_sauce.md │ │ ├── 06_helpful_links.md │ │ └── 07_summary.md │ │ └── 05_conclusion │ │ ├── 01_introduction.md │ │ ├── 02_additional_resources.md │ │ ├── 03_community_support.md │ │ ├── 04_professional_support.md │ │ ├── 05_searching_the_source_code.md │ │ ├── 06_helpful_links.md │ │ └── 07_summary.md │ └── common │ ├── 03_helpful_links.md │ ├── android_sdk_manager.png │ ├── animation_off.png │ ├── appium.app.md │ ├── appium_doctor.png │ ├── appium_external.png │ ├── avd_settings.png │ ├── flaky_gem.md │ ├── inspector_android.png │ ├── inspector_ios.png │ ├── install.md │ ├── install_android.md │ ├── introduction.md │ ├── java_ide.md │ ├── jenkins.md │ ├── jenkins_end.md │ ├── rubymine.md │ ├── running_on_sauce.md │ └── uiautomatorviewer.png ├── projects ├── buck │ ├── BUCK │ ├── COPYING │ ├── UICatalog.app │ │ ├── 12-6AM.png │ │ ├── 12-6PM.png │ │ ├── 6-12AM.png │ │ ├── 6-12PM.png │ │ ├── Default-568h@2x.png │ │ ├── Default@2x.png │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── UIButton_custom.png │ │ ├── UICatalog │ │ ├── blueButton.png │ │ ├── bookmarkImage.png │ │ ├── bookmarkImageHighlighted.png │ │ ├── divider.png │ │ ├── en.lproj │ │ │ ├── AlertsViewController.nib │ │ │ ├── ButtonsViewController.nib │ │ │ ├── ControlsViewController.nib │ │ │ ├── ImagesViewController.nib │ │ │ ├── Localizable.strings │ │ │ ├── MainWindow.nib │ │ │ ├── PickerViewController.nib │ │ │ ├── SearchBarController.nib │ │ │ ├── SegmentViewController.nib │ │ │ ├── TextFieldController.nib │ │ │ ├── TextViewController.nib │ │ │ ├── ToolbarViewController.nib │ │ │ ├── TransitionViewController.nib │ │ │ └── WebViewController.nib │ │ ├── orangeslide.png │ │ ├── scene1.jpg │ │ ├── scene2.jpg │ │ ├── scene3.jpg │ │ ├── scene4.jpg │ │ ├── scene5.jpg │ │ ├── searchBarBackground.png │ │ ├── segment_check.png │ │ ├── segment_search.png │ │ ├── segment_tools.png │ │ ├── segmentedBackground.png │ │ ├── slider_ball.png │ │ ├── toolbarBackground.png │ │ ├── whiteButton.png │ │ └── yellowslide.png │ ├── appium.iml │ ├── bucklets │ │ ├── java7.bucklet │ │ ├── java8.bucklet │ │ ├── java_doc.bucklet │ │ ├── java_library2.bucklet │ │ ├── java_sources.bucklet │ │ ├── local_jar.bucklet │ │ ├── maven_jar.bucklet │ │ ├── maven_package.bucklet │ │ ├── tools │ │ │ ├── BUCK │ │ │ ├── __init__.py │ │ │ ├── download_all.py │ │ │ ├── download_file.py │ │ │ ├── eclipse.py │ │ │ ├── mvn.py │ │ │ ├── pack_war.py │ │ │ └── util.py │ │ └── war.bucklet │ ├── java_ios_2.iml │ ├── lib │ │ ├── BUCK │ │ ├── junit │ │ │ └── BUCK │ │ ├── sauce │ │ │ └── BUCK │ │ └── selenium │ │ │ └── BUCK │ ├── readme.md │ └── test │ │ └── appium │ │ └── Test.java ├── java_android │ ├── README.md │ ├── api.apk │ ├── pom.xml │ ├── src │ │ └── test │ │ │ └── java │ │ │ └── appium │ │ │ └── tutorial │ │ │ └── android │ │ │ ├── AutomatingASimpleActionTest.java │ │ │ ├── PageObjectPatternTest.java │ │ │ ├── page │ │ │ ├── AccessibilityPage.java │ │ │ ├── AnimationPage.java │ │ │ └── HomePage.java │ │ │ └── util │ │ │ ├── AppiumTest.java │ │ │ └── Helpers.java │ └── tutorial_android.iml ├── java_ios │ ├── README.md │ ├── UICatalog6.1.app.zip │ ├── pom.xml │ ├── src │ │ └── test │ │ │ └── java │ │ │ └── appium │ │ │ └── tutorial │ │ │ └── ios │ │ │ ├── AutomatingASimpleActionTest.java │ │ │ ├── PageObjectPatternTest.java │ │ │ ├── page │ │ │ ├── ButtonsPage.java │ │ │ ├── ControlsPage.java │ │ │ └── HomePage.java │ │ │ └── util │ │ │ ├── AppiumTest.java │ │ │ └── Helpers.java │ └── tutorial_ios.iml ├── ruby_android │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE-2.0.txt │ ├── Rakefile │ ├── api.apk │ ├── appium.txt │ ├── appium │ │ ├── android │ │ │ ├── common.rb │ │ │ ├── pages │ │ │ │ ├── accessibility.rb │ │ │ │ ├── animation.rb │ │ │ │ └── home.rb │ │ │ ├── requires.rb │ │ │ └── specs │ │ │ │ └── test.rb │ │ └── run.rb │ └── upload │ │ └── upload.rb └── ruby_ios │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE-2.0.txt │ ├── Rakefile │ ├── UICatalog6.1.app.zip │ ├── appium.txt │ ├── appium │ ├── ios │ │ ├── common.rb │ │ ├── pages │ │ │ ├── button_uses.rb │ │ │ ├── control_uses.rb │ │ │ └── home.rb │ │ ├── requires.rb │ │ └── specs │ │ │ └── test.rb │ └── run.rb │ └── upload │ └── upload.rb ├── readme.md └── spec ├── spec_helper.rb └── tutorial_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | modules/en/gen 3 | tutorials/ 4 | /Gemfile.lock 5 | target/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/NOTICE -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/doc_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_includes/doc_list.md -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/contributing.md -------------------------------------------------------------------------------- /css/appium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/appium.css -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/custom.css -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/css/font-awesome.css -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /css/font-awesome-4.0.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/font-awesome-4.0.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/pygments.css -------------------------------------------------------------------------------- /css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/css/template.css -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/index.md -------------------------------------------------------------------------------- /lib/module_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/module_set.rb -------------------------------------------------------------------------------- /lib/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/support/helpers.rb -------------------------------------------------------------------------------- /lib/support/helpers/custom_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/support/helpers/custom_helpers.rb -------------------------------------------------------------------------------- /lib/support/helpers/file_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/support/helpers/file_helpers.rb -------------------------------------------------------------------------------- /lib/support/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/support/requires.rb -------------------------------------------------------------------------------- /lib/tutorial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/lib/tutorial.rb -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/02_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/02_installation.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/03_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/03_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/04_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/01_getting_started_with_appium/04_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/02_compiling_the_ios_sample_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/02_compiling_the_ios_sample_app.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/03_prebuilt_ios_sample_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/03_prebuilt_ios_sample_app.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/04_starting_the_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/04_starting_the_console.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/05_page_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/05_page_command.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/06_ending_the_session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/06_ending_the_session.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/07_appium.app_inspector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/07_appium.app_inspector.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/08_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/08_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/09_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/02_appium_ruby_console/09_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/02_automating_a_simple_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/02_automating_a_simple_action.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/03_page_object_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/03_page_object_pattern.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/04_running_the_test_with_rake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/04_running_the_test_with_rake.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/05_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/05_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/06_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/03_writing_your_first_test/06_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/02_flaky_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/02_flaky_gem.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/03_running_locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/03_running_locally.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/04_running_using_jenkins_ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/04_running_using_jenkins_ci.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/05_running_on_sauce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/05_running_on_sauce.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/06_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/06_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/04_running_tests/07_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/04_running_tests/07_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/02_additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/02_additional_resources.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/03_community_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/03_community_support.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/04_professional_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/04_professional_support.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/05_searching_the_source_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/05_searching_the_source_code.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/06_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/06_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/01_native_ios_automation/05_conclusion/07_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/01_native_ios_automation/05_conclusion/07_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/02_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/02_installation.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/03_android_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/03_android_sdk.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/04_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/04_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/05_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/01_getting_started_with_appium/05_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/02_compiling_the_android_sample_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/02_compiling_the_android_sample_app.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/03_prebuilt_android_sample_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/03_prebuilt_android_sample_app.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/04_starting_the_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/04_starting_the_console.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/05_page_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/05_page_command.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/06_ending_the_session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/06_ending_the_session.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/07_appium.app_inspector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/07_appium.app_inspector.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/08_uiautomatorviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/08_uiautomatorviewer.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/09_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/09_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/10_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/02_appium_ruby_console/10_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/02_automating_a_simple_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/02_automating_a_simple_action.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/03_page_object_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/03_page_object_pattern.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/04_running_the_test_with_rake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/04_running_the_test_with_rake.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/05_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/05_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/06_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/03_writing_your_first_test/06_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/02_flaky_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/02_flaky_gem.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/03_running_locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/03_running_locally.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/04_running_using_jenkins_ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/04_running_using_jenkins_ci.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/05_running_on_sauce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/05_running_on_sauce.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/06_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/06_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/04_running_tests/07_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/04_running_tests/07_summary.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/01_introduction.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/02_additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/02_additional_resources.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/03_community_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/03_community_support.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/04_professional_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/04_professional_support.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/05_searching_the_source_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/05_searching_the_source_code.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/06_helpful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/06_helpful_links.md -------------------------------------------------------------------------------- /modules/en/source/appium/02_native_android_automation/05_conclusion/07_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/appium/02_native_android_automation/05_conclusion/07_summary.md -------------------------------------------------------------------------------- /modules/en/source/common/03_helpful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/en/source/common/android_sdk_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/android_sdk_manager.png -------------------------------------------------------------------------------- /modules/en/source/common/animation_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/animation_off.png -------------------------------------------------------------------------------- /modules/en/source/common/appium.app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/appium.app.md -------------------------------------------------------------------------------- /modules/en/source/common/appium_doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/appium_doctor.png -------------------------------------------------------------------------------- /modules/en/source/common/appium_external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/appium_external.png -------------------------------------------------------------------------------- /modules/en/source/common/avd_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/avd_settings.png -------------------------------------------------------------------------------- /modules/en/source/common/flaky_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/flaky_gem.md -------------------------------------------------------------------------------- /modules/en/source/common/inspector_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/inspector_android.png -------------------------------------------------------------------------------- /modules/en/source/common/inspector_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/inspector_ios.png -------------------------------------------------------------------------------- /modules/en/source/common/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/install.md -------------------------------------------------------------------------------- /modules/en/source/common/install_android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/install_android.md -------------------------------------------------------------------------------- /modules/en/source/common/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/introduction.md -------------------------------------------------------------------------------- /modules/en/source/common/java_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/java_ide.md -------------------------------------------------------------------------------- /modules/en/source/common/jenkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/jenkins.md -------------------------------------------------------------------------------- /modules/en/source/common/jenkins_end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/jenkins_end.md -------------------------------------------------------------------------------- /modules/en/source/common/rubymine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/rubymine.md -------------------------------------------------------------------------------- /modules/en/source/common/running_on_sauce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/running_on_sauce.md -------------------------------------------------------------------------------- /modules/en/source/common/uiautomatorviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/modules/en/source/common/uiautomatorviewer.png -------------------------------------------------------------------------------- /projects/buck/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/BUCK -------------------------------------------------------------------------------- /projects/buck/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/COPYING -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/12-6AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/12-6AM.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/12-6PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/12-6PM.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/6-12AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/6-12AM.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/6-12PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/6-12PM.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/Default-568h@2x.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/Default@2x.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/Info.plist -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/UIButton_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/UIButton_custom.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/UICatalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/UICatalog -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/blueButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/blueButton.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/bookmarkImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/bookmarkImage.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/bookmarkImageHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/bookmarkImageHighlighted.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/divider.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/AlertsViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/AlertsViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/ButtonsViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/ButtonsViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/ControlsViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/ControlsViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/ImagesViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/ImagesViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/MainWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/MainWindow.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/PickerViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/PickerViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/SearchBarController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/SearchBarController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/SegmentViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/SegmentViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/TextFieldController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/TextFieldController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/TextViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/TextViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/ToolbarViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/ToolbarViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/TransitionViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/TransitionViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/en.lproj/WebViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/en.lproj/WebViewController.nib -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/orangeslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/orangeslide.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/scene1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/scene1.jpg -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/scene2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/scene2.jpg -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/scene3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/scene3.jpg -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/scene4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/scene4.jpg -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/scene5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/scene5.jpg -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/searchBarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/searchBarBackground.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/segment_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/segment_check.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/segment_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/segment_search.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/segment_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/segment_tools.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/segmentedBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/segmentedBackground.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/slider_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/slider_ball.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/toolbarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/toolbarBackground.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/whiteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/whiteButton.png -------------------------------------------------------------------------------- /projects/buck/UICatalog.app/yellowslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/UICatalog.app/yellowslide.png -------------------------------------------------------------------------------- /projects/buck/appium.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/appium.iml -------------------------------------------------------------------------------- /projects/buck/bucklets/java7.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/java7.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/java8.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/java8.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/java_doc.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/java_doc.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/java_library2.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/java_library2.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/java_sources.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/java_sources.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/local_jar.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/local_jar.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/maven_jar.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/maven_jar.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/maven_package.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/maven_package.bucklet -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/BUCK -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/download_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/download_all.py -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/download_file.py -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/eclipse.py -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/mvn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/mvn.py -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/pack_war.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/pack_war.py -------------------------------------------------------------------------------- /projects/buck/bucklets/tools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/tools/util.py -------------------------------------------------------------------------------- /projects/buck/bucklets/war.bucklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/bucklets/war.bucklet -------------------------------------------------------------------------------- /projects/buck/java_ios_2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/java_ios_2.iml -------------------------------------------------------------------------------- /projects/buck/lib/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/lib/BUCK -------------------------------------------------------------------------------- /projects/buck/lib/junit/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/lib/junit/BUCK -------------------------------------------------------------------------------- /projects/buck/lib/sauce/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/lib/sauce/BUCK -------------------------------------------------------------------------------- /projects/buck/lib/selenium/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/lib/selenium/BUCK -------------------------------------------------------------------------------- /projects/buck/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/readme.md -------------------------------------------------------------------------------- /projects/buck/test/appium/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/buck/test/appium/Test.java -------------------------------------------------------------------------------- /projects/java_android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/README.md -------------------------------------------------------------------------------- /projects/java_android/api.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/api.apk -------------------------------------------------------------------------------- /projects/java_android/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/pom.xml -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/AutomatingASimpleActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/AutomatingASimpleActionTest.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/PageObjectPatternTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/PageObjectPatternTest.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/page/AccessibilityPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/page/AccessibilityPage.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/page/AnimationPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/page/AnimationPage.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/page/HomePage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/page/HomePage.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/util/AppiumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/util/AppiumTest.java -------------------------------------------------------------------------------- /projects/java_android/src/test/java/appium/tutorial/android/util/Helpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/src/test/java/appium/tutorial/android/util/Helpers.java -------------------------------------------------------------------------------- /projects/java_android/tutorial_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_android/tutorial_android.iml -------------------------------------------------------------------------------- /projects/java_ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/README.md -------------------------------------------------------------------------------- /projects/java_ios/UICatalog6.1.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/UICatalog6.1.app.zip -------------------------------------------------------------------------------- /projects/java_ios/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/pom.xml -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/AutomatingASimpleActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/AutomatingASimpleActionTest.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/PageObjectPatternTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/PageObjectPatternTest.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/page/ButtonsPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/page/ButtonsPage.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/page/ControlsPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/page/ControlsPage.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/page/HomePage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/page/HomePage.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/util/AppiumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/util/AppiumTest.java -------------------------------------------------------------------------------- /projects/java_ios/src/test/java/appium/tutorial/ios/util/Helpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/src/test/java/appium/tutorial/ios/util/Helpers.java -------------------------------------------------------------------------------- /projects/java_ios/tutorial_ios.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/java_ios/tutorial_ios.iml -------------------------------------------------------------------------------- /projects/ruby_android/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/Gemfile -------------------------------------------------------------------------------- /projects/ruby_android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/Gemfile.lock -------------------------------------------------------------------------------- /projects/ruby_android/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/LICENSE-2.0.txt -------------------------------------------------------------------------------- /projects/ruby_android/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/Rakefile -------------------------------------------------------------------------------- /projects/ruby_android/api.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/api.apk -------------------------------------------------------------------------------- /projects/ruby_android/appium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium.txt -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/common.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/pages/accessibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/pages/accessibility.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/pages/animation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/pages/animation.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/pages/home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/pages/home.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/requires.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/android/specs/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/android/specs/test.rb -------------------------------------------------------------------------------- /projects/ruby_android/appium/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/appium/run.rb -------------------------------------------------------------------------------- /projects/ruby_android/upload/upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_android/upload/upload.rb -------------------------------------------------------------------------------- /projects/ruby_ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/Gemfile -------------------------------------------------------------------------------- /projects/ruby_ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/Gemfile.lock -------------------------------------------------------------------------------- /projects/ruby_ios/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/LICENSE-2.0.txt -------------------------------------------------------------------------------- /projects/ruby_ios/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/Rakefile -------------------------------------------------------------------------------- /projects/ruby_ios/UICatalog6.1.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/UICatalog6.1.app.zip -------------------------------------------------------------------------------- /projects/ruby_ios/appium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium.txt -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/common.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/pages/button_uses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/pages/button_uses.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/pages/control_uses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/pages/control_uses.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/pages/home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/pages/home.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/requires.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/ios/specs/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/ios/specs/test.rb -------------------------------------------------------------------------------- /projects/ruby_ios/appium/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/appium/run.rb -------------------------------------------------------------------------------- /projects/ruby_ios/upload/upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/projects/ruby_ios/upload/upload.rb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/readme.md -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tutorial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium-boneyard/tutorial/HEAD/spec/tutorial_spec.rb --------------------------------------------------------------------------------