appium_lib 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/android_tests/lib/android/specs/android/helper.rb +4 -0
- data/docs/android_docs.md +153 -153
- data/docs/ios_docs.md +147 -147
- data/lib/appium_lib/android/helper.rb +1 -1
- data/lib/appium_lib/common/version.rb +1 -1
- data/lib/appium_lib/driver.rb +2 -2
- data/release_notes.md +7 -0
- metadata +1 -1
data/lib/appium_lib/driver.rb
CHANGED
|
@@ -248,9 +248,9 @@ module Appium
|
|
|
248
248
|
@default_wait = appium_lib_opts.fetch :wait, 30
|
|
249
249
|
@last_waits = [@default_wait]
|
|
250
250
|
@sauce_username = appium_lib_opts.fetch :sauce_username, ENV['SAUCE_USERNAME']
|
|
251
|
-
@sauce_username = nil if @sauce_username.
|
|
251
|
+
@sauce_username = nil if !@sauce_username || (@sauce_username.is_a?(String) && @sauce_username.empty?)
|
|
252
252
|
@sauce_access_key = appium_lib_opts.fetch :sauce_access_key, ENV['SAUCE_ACCESS_KEY']
|
|
253
|
-
@sauce_access_key = nil if @sauce_access_key.
|
|
253
|
+
@sauce_access_key = nil if !@sauce_access_key || (@sauce_access_key.is_a?(String) && @sauce_access_key.empty?)
|
|
254
254
|
@port = appium_lib_opts.fetch :port, 4723
|
|
255
255
|
|
|
256
256
|
# Path to the .apk, .app or .app.zip.
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v3.0.2 2014-06-01
|
|
2
|
+
|
|
3
|
+
- [08fe528](https://github.com/appium/ruby_lib/commit/08fe528887c33d64a3b06a5160859888cb92a9dd) Release 3.0.2
|
|
4
|
+
- [a051b35](https://github.com/appium/ruby_lib/commit/a051b355b488db6d303e800451668a1d8cb7d3d0) Fix find by ids on Android
|
|
5
|
+
- [84e3983](https://github.com/appium/ruby_lib/commit/84e39831d7d0c825c5c7ed44a512fb891e6efef3) Allow setting sauce_username/sauce_access_key to false
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v3.0.1 2014-06-01
|
|
2
9
|
|
|
3
10
|
- [370b79c](https://github.com/appium/ruby_lib/commit/370b79c4b9f18fa615c145685256f543ee18debd) Release 3.0.1
|