Skip to content

Commit 97c6421

Browse files
authored
remove old docs (#768)
1 parent f58dace commit 97c6421

File tree

3 files changed

+22
-36
lines changed

3 files changed

+22
-36
lines changed

android_tests/readme.md

+16-29
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,9 @@ ruby_lib's Android tests. Requires `Ruby 2.2+` or better.
1212
api.apk is from [appium/android-apidemos](https://github.com/appium/android-apidemos)
1313
The way to generate api.apk is described in the repository.
1414

15-
#### Documentation
15+
---
1616

17-
- [Installing Appium on OS X](https://github.com/appium/ruby_console/blob/master/osx.md)
18-
- [Overview](https://github.com/appium/ruby_lib/blob/master/docs/docs.md)
19-
- [Android methods](https://github.com/appium/ruby_lib/blob/master/docs/android_docs.md)
20-
- [Minitest Expectations](http://ruby-doc.org/stdlib-1.9.3/libdoc/minitest/spec/rdoc/MiniTest/Expectations.html)
21-
22-
--
23-
24-
These results are run against Intel HAXM emulator (Nexus 7, Android 5.0.1, API 21)
25-
26-
```java
17+
```ruby
2718
Finished in 2 mins 57 secs
2819

2920
106 runs, 144 assertions, 0 failures, 0 errors, 0 skips
@@ -34,21 +25,17 @@ Finished in 2 mins 57 secs
3425
- apk
3526
- [emma-build](https://github.com/appium/android-apidemos/blob/a20597cb97238bf43c073500444b9428fab53f50/README.md#emma-build-for-testing-code-coverage)
3627
- `appium.txt`
37-
```
38-
[caps]
39-
platformName = "android"
40-
deviceName = "Nexus 7"
41-
app = "../test_apps/api.apk"
42-
appPackage = "io.appium.android.apis"
43-
appActivity = "io.appium.android.apis.ApiDemos"
44-
some_capability = "some_capability"
45-
androidCoverage = 'io.appium.android.apis/io.appium.android.apis.app.LocalSampleInstrumentation'
46-
47-
[appium_lib]
48-
sauce_username = ""
49-
sauce_access_key = ""
50-
```
51-
- Documentations
52-
- `uiautomationName`
53-
- [appium](https://github.com/appium/appium/blob/0.18.x/docs/en/android_coverage.md)
54-
- [uiautomator2](https://github.com/Sw0rdstream/appium/blob/6f11ede8df88d99ef90bc2776b8e9e26f7329242/docs/en/writing-running-appium/android_coverage.md)
28+
```
29+
[caps]
30+
platformName = "android"
31+
deviceName = "Nexus 7"
32+
app = "../test_apps/api.apk"
33+
appPackage = "io.appium.android.apis"
34+
appActivity = "io.appium.android.apis.ApiDemos"
35+
some_capability = "some_capability"
36+
androidCoverage = 'io.appium.android.apis/io.appium.android.apis.app.LocalSampleInstrumentation'
37+
38+
[appium_lib]
39+
sauce_username = ""
40+
sauce_access_key = ""
41+
```

ios_tests/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ source 'https://rubygems.org'
22
gemspec path: File.expand_path('../../', __FILE__) # __dir__ fails on 1.9
33

44
gem 'appium_console'
5+
gem 'parallel_tests'

ios_tests/readme.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,15 @@ ruby_lib's iOS tests. Requires `Ruby 2.2+` or better.
1717
There are two backend drivers available for iOS (automationName). UIAutomation which is supported up-to iOS 9.3 and XCUITest which is supported from 10.0 on. UIAutomation is deprecated but will continue to be supported for the time being.
1818

1919
By default, the tests are now run against `iPhone 6 Simulator 10.1 (14A345)`
20-
#### Documentation
21-
22-
- [Installing Appium on OS X](https://github.com/appium/ruby_console/blob/master/osx.md)
23-
- [Overview](https://github.com/appium/ruby_lib/blob/master/docs/docs.md)
24-
- [iOS methods](https://github.com/appium/ruby_lib/blob/master/docs/ios_docs.md)
25-
- [Minitest Expectations](http://ruby-doc.org/stdlib-1.9.3/libdoc/minitest/spec/rdoc/MiniTest/Expectations.html)
2620

2721
--
2822

29-
```java
23+
```ruby
3024
Finished in 1 min 57 secs
3125

3226
123 runs, 164 assertions, 0 failures, 0 errors, 0 skips
3327
```
28+
29+
### Tips for parallel
30+
31+
- https://github.com/grosser/parallel_tests

0 commit comments

Comments
 (0)