testcentricity_web 2.3.2 → 2.3.3
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/README.md +13 -1
- data/lib/devices/devices.yml +11 -3
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/webdriver_helper.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab2e8b211cc796a9822b39fa528a631c6e5c44a0
|
|
4
|
+
data.tar.gz: 1022d194646a166296f4ef3f6734d64e298e3210
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 146c025ccf47140c086c94ffb105ebf2db15aea5137f0f69857c448acfce24740df9bfbd624dff0539d4ad5944a5d13bfe74cc49d5359d315a5740b89b79eb96
|
|
7
|
+
data.tar.gz: f27897292ee4533bbe633c95ac4a84e45a6cd0d239a153b07be46e144368e7ef733b3160c3c73044c814290bdbdbd0e0fc6257543cb3422572f0a57adcbc7f56
|
data/README.md
CHANGED
|
@@ -21,8 +21,14 @@ The TestCentricity™ Web gem supports running automated tests against the follo
|
|
|
21
21
|
locally hosted instances of Firefox 48 or greater requires Marionette (aka geckodriver) and selenium-webdriver version 3.x, both of which are currently
|
|
22
22
|
feature incomplete and potentially unstable. More information can be found [here](https://github.com/teamcapybara/capybara/issues/1710).
|
|
23
23
|
|
|
24
|
+
TestCentricity™ will be updated to support testing with Selenium-WebDriver version 3.x as soon as a stable version is available that **fully** supports locally
|
|
25
|
+
hosted instances of Chrome, Firefox, Safari, and IE web browsers.
|
|
26
|
+
|
|
24
27
|
|
|
25
28
|
## What's New
|
|
29
|
+
###Version 2.3.3
|
|
30
|
+
|
|
31
|
+
* Added device profile for iPhone 7 (iOS 10) with MS Edge browser.
|
|
26
32
|
|
|
27
33
|
###Version 2.3.1
|
|
28
34
|
|
|
@@ -37,7 +43,7 @@ Environment Variable is set to `true`. `Environ.tunneling` will be set to true i
|
|
|
37
43
|
|
|
38
44
|
###Version 2.1.10
|
|
39
45
|
|
|
40
|
-
* Added device profiles for iPhone 7 (iOS 10) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser
|
|
46
|
+
* Added device profiles for iPhone 7 (iOS 10) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser.
|
|
41
47
|
|
|
42
48
|
###Version 2.1.8
|
|
43
49
|
|
|
@@ -81,6 +87,10 @@ use the [parallel_tests gem](https://rubygems.org/gems/parallel_tests) to decrea
|
|
|
81
87
|
|
|
82
88
|
|
|
83
89
|
## What's Fixed
|
|
90
|
+
###Version 2.3.3
|
|
91
|
+
|
|
92
|
+
* Corrected device profiles for iPad (iOS 10) with Mobile Chrome browser and iPad (iOS 10) with Mobile Firefox browser.
|
|
93
|
+
|
|
84
94
|
###Version 2.2.1
|
|
85
95
|
|
|
86
96
|
* `SelectList.choose_option` method now accepts index values for Chosen list objects.
|
|
@@ -828,6 +838,7 @@ the `WEB_BROWSER` Environment Variable must be set to one of the values from the
|
|
|
828
838
|
`iphone7_plus` |`chrome` |414 x 736 |portrait |iOS 10
|
|
829
839
|
`iphone7_chrome` |`chrome` |375 x 667 |portrait |iOS 10 - Mobile Chrome browser for iOS
|
|
830
840
|
`iphone7_firefox` |`chrome` |375 x 667 |portrait |iOS 10 - Mobile Firefox browser for iOS
|
|
841
|
+
`iphone7_edge` |`chrome` |375 x 667 |portrait |iOS 10 - Microsoft Edge browser for iOS
|
|
831
842
|
`iphone8` |`chrome` |375 x 667 |portrait |iOS 11
|
|
832
843
|
`iphone8_plus` |`chrome` |414 x 736 |portrait |iOS 11
|
|
833
844
|
`iphonex` |`chrome` |375 x 812 |portrait |iOS 11
|
|
@@ -1076,6 +1087,7 @@ service(s) that you intend to connect with.
|
|
|
1076
1087
|
iphone7_plus: WEB_BROWSER=iphone7_plus HOST_BROWSER=chrome <%= mobile %>
|
|
1077
1088
|
iphone7_chrome: WEB_BROWSER=iphone7_chrome HOST_BROWSER=chrome <%= mobile %>
|
|
1078
1089
|
iphone7_firefox: WEB_BROWSER=iphone7_firefox HOST_BROWSER=chrome <%= mobile %>
|
|
1090
|
+
iphone7_edge: WEB_BROWSER=iphone7_edge HOST_BROWSER=chrome <%= mobile %>
|
|
1079
1091
|
iphone8: WEB_BROWSER=iphone8 HOST_BROWSER=chrome <%= mobile %>
|
|
1080
1092
|
iphone8_plus: WEB_BROWSER=iphone8_plus HOST_BROWSER=chrome <%= mobile %>
|
|
1081
1093
|
iphoneX: WEB_BROWSER=iphonex HOST_BROWSER=chrome <%= mobile %>
|
data/lib/devices/devices.yml
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
:css_width: 375
|
|
62
62
|
:css_height: 667
|
|
63
63
|
:default_orientation: portrait
|
|
64
|
-
:user_agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/
|
|
64
|
+
:user_agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/63.0.3239.73 Mobile/14G60 Safari/602.1"
|
|
65
65
|
:iphone7_firefox:
|
|
66
66
|
:name: "iPhone 7 - Firefox"
|
|
67
67
|
:os: ios
|
|
@@ -70,6 +70,14 @@
|
|
|
70
70
|
:css_height: 667
|
|
71
71
|
:default_orientation: portrait
|
|
72
72
|
:user_agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) FxiOS/10.3b7934 Mobile/14G60 Safari/603.3.8"
|
|
73
|
+
:iphone7_edge:
|
|
74
|
+
:name: "iPhone 7 - MS Edge"
|
|
75
|
+
:os: ios
|
|
76
|
+
:type: phone
|
|
77
|
+
:css_width: 375
|
|
78
|
+
:css_height: 667
|
|
79
|
+
:default_orientation: portrait
|
|
80
|
+
:user_agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 EdgiOS/41.41.4.0 Mobile/14G60 Safari/603.3.8"
|
|
73
81
|
:iphone8:
|
|
74
82
|
:name: "iPhone 8"
|
|
75
83
|
:os: ios
|
|
@@ -229,7 +237,7 @@ nexus6:
|
|
|
229
237
|
:css_width: 1024
|
|
230
238
|
:css_height: 768
|
|
231
239
|
:default_orientation: landscape
|
|
232
|
-
:user_agent: "Mozilla/5.0 (
|
|
240
|
+
:user_agent: "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/63.0.3239.73 Mobile/14G60 Safari/602.1"
|
|
233
241
|
:ipad_firefox:
|
|
234
242
|
:name: "iPad - Firefox"
|
|
235
243
|
:os: ios
|
|
@@ -237,7 +245,7 @@ nexus6:
|
|
|
237
245
|
:css_width: 1024
|
|
238
246
|
:css_height: 768
|
|
239
247
|
:default_orientation: landscape
|
|
240
|
-
:user_agent: "Mozilla/5.0 (
|
|
248
|
+
:user_agent: "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) FxiOS/10.3b7934 Mobile/14G60 Safari/603.3.8"
|
|
241
249
|
:android_tablet:
|
|
242
250
|
:name: "Generic Android tablet"
|
|
243
251
|
:os: android
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: testcentricity_web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- A.J. Mrozinski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-12-
|
|
11
|
+
date: 2017-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -274,9 +274,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
274
274
|
requirements:
|
|
275
275
|
- Capybara, Selenium-WebDriver
|
|
276
276
|
rubyforge_project:
|
|
277
|
-
rubygems_version: 2.5
|
|
277
|
+
rubygems_version: 2.6.5
|
|
278
278
|
signing_key:
|
|
279
279
|
specification_version: 4
|
|
280
280
|
summary: A Page Object and Data Object Model Framework for desktop and mobile web
|
|
281
281
|
testing
|
|
282
282
|
test_files: []
|
|
283
|
+
has_rdoc:
|