appium_lib 0.3.13 → 0.3.14
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 +8 -8
- data/lib/appium_lib/common/version.rb +2 -2
- data/lib/appium_lib/ios/patch.rb +12 -0
- data/release_notes.md +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTQzMDhiZjA2NDk4YTQ3NjExNzFmODIxYjU2YTZmMjQxYjkwYWE3Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDc5MjEwY2NiZWM2NDYyZmJiYWEyYTE3ZGNkMWVlMjI2NDVhMTQ1Nw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Zjk2NDlmNjVmNzQ2ZmFlOGYyYWFmMGJjYmE2MjZmNzM4YThkYWYzZjk1NjYw
|
10
|
+
MWMyNWU1M2Q5YzY4N2FmMzg3NTQ4MmRkYjU1NTFmMzE4OGZjNTFiNzQwNTBk
|
11
|
+
MjAwZTBhMWJmNzM0ZTIzNzMyNTBjZDA1MmE1MmM4ODY4ZDQ5NTI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZTYzODAwYWU1MGMzMjdjM2UxYTdiZTJmZTkyY2Y2OTEyOWU1MmFlYjYxOTIw
|
14
|
+
YTk4YTYyMjU1OWU3M2RlNGRkNmY2NTZmMWI4ODY1ODdmY2M2NzJmOGIxMzE1
|
15
|
+
MDE2MjZkZmVjNDczYWQ1ZWM0OTIxODI1ZDQ0ODc2ZTQzODY3ZTg=
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Appium
|
3
3
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
4
|
-
VERSION = '0.3.
|
5
|
-
DATE = '2013-05-
|
4
|
+
VERSION = '0.3.14' unless defined? ::Appium::VERSION
|
5
|
+
DATE = '2013-05-13' unless defined? ::Appium::DATE
|
6
6
|
end
|
data/lib/appium_lib/ios/patch.rb
CHANGED
@@ -14,6 +14,18 @@ module Appium::Ios
|
|
14
14
|
JS
|
15
15
|
@driver.execute_script js
|
16
16
|
end
|
17
|
+
|
18
|
+
# returns if the element is visible
|
19
|
+
# 1 = visible
|
20
|
+
# 0 = not visible
|
21
|
+
# null = unknown
|
22
|
+
# http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Reference/UIAElementClassReference/UIAElement/UIAElement.html#//apple_ref/doc/uid/TP40009903
|
23
|
+
def visible
|
24
|
+
js = <<-JS
|
25
|
+
au.getElement('#{self.ref}').isVisible();
|
26
|
+
JS
|
27
|
+
@driver.execute_script js
|
28
|
+
end
|
17
29
|
end
|
18
30
|
end
|
19
31
|
end
|
data/release_notes.md
CHANGED
@@ -69,6 +69,9 @@
|
|
69
69
|
|
70
70
|
#### v0.3.2 2013-04-26
|
71
71
|
|
72
|
+
- [7badb99](https://github.com/appium/ruby_lib/commit/7badb998734ee4c4ae0781c5e8f3cfc4b862eeb3) Release 0.3.13
|
73
|
+
- [efaa0ea](https://github.com/appium/ruby_lib/commit/efaa0eaebe5a045dba8370ec98aea8bdf31637ba) Fix #52
|
74
|
+
- [fd0941c](https://github.com/appium/ruby_lib/commit/fd0941cd02dbfeff32e506dcff8192480e13fb38) Update release notes
|
72
75
|
- [faf3e98](https://github.com/appium/ruby_lib/commit/faf3e98d0d745df9bbbfada93dcfd6b47a585793) Release 0.3.12
|
73
76
|
- [7ff6b95](https://github.com/appium/ruby_lib/commit/7ff6b955cafc235a554d192cc09014c4400dc27a) Add scroll_to
|
74
77
|
- [d590b4d](https://github.com/appium/ruby_lib/commit/d590b4da6eab2da4068292ff6604afa89e73017e) Update release notes
|
@@ -123,6 +126,13 @@
|
|
123
126
|
- [7df8ddc](https://github.com/appium/ruby_lib/commit/7df8ddcd0edb294abaddd2424f0f6b45f086fb53) Update release notes
|
124
127
|
|
125
128
|
|
129
|
+
#### v0.3.13 2013-05-10
|
130
|
+
|
131
|
+
- [7badb99](https://github.com/appium/ruby_lib/commit/7badb998734ee4c4ae0781c5e8f3cfc4b862eeb3) Release 0.3.13
|
132
|
+
- [efaa0ea](https://github.com/appium/ruby_lib/commit/efaa0eaebe5a045dba8370ec98aea8bdf31637ba) Fix #52
|
133
|
+
- [fd0941c](https://github.com/appium/ruby_lib/commit/fd0941cd02dbfeff32e506dcff8192480e13fb38) Update release notes
|
134
|
+
|
135
|
+
|
126
136
|
#### v0.3.12 2013-05-10
|
127
137
|
|
128
138
|
- [faf3e98](https://github.com/appium/ruby_lib/commit/faf3e98d0d745df9bbbfada93dcfd6b47a585793) Release 0.3.12
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appium_lib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: selenium-webdriver
|