testcentricity_web 0.9.9.1 → 0.9.9.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/README.md +7 -2
- data/lib/devices/devices.yml +20 -2
- data/lib/testcentricity_web/version.rb +1 -1
- data/testcentricity_web.gemspec +4 -4
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 915b38aca9704d89a76ae3041697543285d02a13
|
|
4
|
+
data.tar.gz: a5a334e675c0361de840195925c6fae3bd3dca90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30993e3f1540a6cb4b877c66477b9e919264e581cf46f4fc1caa344b8588b80d71a90c518c80f62eb6d40cba68afddf17a7c5089e4397e9e293cd0e0fd12ee2a
|
|
7
|
+
data.tar.gz: 0dd8aca86c1b240b43cb865e5dba0b7430bda0753ae1c43392f369546e8938f45109b14e7ea2a9359978b3b6fbd479822c46a4e5356924e1cbd2b25713e6d05c
|
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ use with Cucumber, Capybara, and Selenium-Webdriver.
|
|
|
8
8
|
|
|
9
9
|
The TestCentricity™ Web gem supports running automated tests against the following web test targets:
|
|
10
10
|
|
|
11
|
-
* locally hosted desktop browsers (Firefox, Chrome, Safari,
|
|
11
|
+
* locally hosted desktop browsers (Firefox, Chrome, Safari, or IE)
|
|
12
12
|
* locally hosted emulated iOS, Android, Windows Phone, or Blackberry mobile browsers (using Firefox or Chrome)
|
|
13
13
|
* a "headless" browser (using Poltergeist and PhantomJS)
|
|
14
14
|
* mobile Safari browsers on iOS device simulators (using Appium and XCode on OS X)
|
|
@@ -375,7 +375,6 @@ For locally hosted desktop web browsers, the `WEB_BROWSER` Environment Variable
|
|
|
375
375
|
`chrome` | OS X or Windows
|
|
376
376
|
`safari` | OS X only
|
|
377
377
|
`ie` | Windows only
|
|
378
|
-
`edge` | Windows 10 only
|
|
379
378
|
`poltergeist` | OS X or Windows
|
|
380
379
|
|
|
381
380
|
To set the size of a desktop browser window, you set the `BROWSER_SIZE` Environment Variable to the desired width and height in pixels as shown below:
|
|
@@ -406,12 +405,15 @@ browsers, the `WEB_BROWSER` Environment Variable must be set to one of the value
|
|
|
406
405
|
`blackberry_playbook` |`firefox` or `chrome` |1024 x 600|landscape
|
|
407
406
|
`samsung_galaxy_tab` |`firefox` or `chrome` |1280 x 800|landscape
|
|
408
407
|
`google_nexus7` |`firefox` or `chrome` |960 x 600|landscape
|
|
408
|
+
`google_nexus9` |`firefox` or `chrome` |1024 x 768|landscape
|
|
409
|
+
`google_nexus10` |`firefox` or `chrome` |1280 x 800|landscape
|
|
409
410
|
`iphone` |`firefox` or `chrome` |320 x 480|portrait
|
|
410
411
|
`iphone4` |`firefox` or `chrome` |320 x 480|portrait
|
|
411
412
|
`iphone5` |`firefox` or `chrome` |320 x 568|portrait
|
|
412
413
|
`iphone6` |`firefox` or `chrome` |375 x 667|portrait
|
|
413
414
|
`iphone6_plus` |`firefox` or `chrome` |414 x 736|portrait
|
|
414
415
|
`android_phone` |`firefox` or `chrome` |320 x 480|portrait
|
|
416
|
+
`nexus6` |`firefox` or `chrome` |411 x 731|portrait
|
|
415
417
|
`windows_phone7` |`firefox` or `chrome` |320 x 480|portrait
|
|
416
418
|
`windows_phone8` |`firefox` or `chrome` |320 x 480|portrait
|
|
417
419
|
`blackberry_z10` |`firefox` or `chrome` |384 x 640|portrait
|
|
@@ -612,6 +614,7 @@ replace the placeholder text with your user account and authorization code for t
|
|
|
612
614
|
iphone6: WEB_BROWSER=iphone6 HOST_BROWSER=firefox <%= mobile %>
|
|
613
615
|
iphone6_plus: WEB_BROWSER=iphone6_plus HOST_BROWSER=firefox <%= mobile %>
|
|
614
616
|
android_phone: WEB_BROWSER=android_phone HOST_BROWSER=firefox <%= mobile %>
|
|
617
|
+
nexus6: WEB_BROWSER=nexus6 HOST_BROWSER=firefox <%= mobile %>
|
|
615
618
|
android_tablet: WEB_BROWSER=android_tablet HOST_BROWSER=firefox <%= mobile %>
|
|
616
619
|
kindle_fire: WEB_BROWSER=kindle_fire HOST_BROWSER=firefox <%= mobile %>
|
|
617
620
|
kindle_firehd7: WEB_BROWSER=kindle_firehd7 HOST_BROWSER=firefox <%= mobile %>
|
|
@@ -620,6 +623,8 @@ replace the placeholder text with your user account and authorization code for t
|
|
|
620
623
|
blackberry_playbook: WEB_BROWSER=blackberry_playbook HOST_BROWSER=firefox <%= mobile %>
|
|
621
624
|
samsung_galaxy_tab: WEB_BROWSER=samsung_galaxy_tab HOST_BROWSER=firefox <%= mobile %>
|
|
622
625
|
google_nexus7: WEB_BROWSER=google_nexus7 HOST_BROWSER=firefox <%= mobile %>
|
|
626
|
+
google_nexus9: WEB_BROWSER=google_nexus9 HOST_BROWSER=firefox <%= mobile %>
|
|
627
|
+
google_nexus10: WEB_BROWSER=google_nexus10 HOST_BROWSER=firefox <%= mobile %>
|
|
623
628
|
windows_phone7: WEB_BROWSER=windows_phone7 HOST_BROWSER=firefox <%= mobile %>
|
|
624
629
|
windows_phone8: WEB_BROWSER=windows_phone8 HOST_BROWSER=firefox <%= mobile %>
|
|
625
630
|
blackberry_z10: WEB_BROWSER=blackberry_z10 HOST_BROWSER=firefox <%= mobile %>
|
data/lib/devices/devices.yml
CHANGED
|
@@ -34,6 +34,12 @@
|
|
|
34
34
|
:css_height: 480
|
|
35
35
|
:default_orientation: portrait
|
|
36
36
|
:user_agent: "Mozilla/5.0 (Linux; U; Android 4.0.1; en-us; sdk Build/ICS_MR0) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30"
|
|
37
|
+
nexus6:
|
|
38
|
+
:name: "Nexus 6 or 6P phone"
|
|
39
|
+
:css_width: 411
|
|
40
|
+
:css_height: 731
|
|
41
|
+
:default_orientation: portrait
|
|
42
|
+
:user_agent: "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 6P Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36"
|
|
37
43
|
:windows_phone8:
|
|
38
44
|
:name: "Generic Windows 8 phone"
|
|
39
45
|
:css_width: 320
|
|
@@ -111,10 +117,22 @@
|
|
|
111
117
|
:css_width: 1280
|
|
112
118
|
:css_height: 800
|
|
113
119
|
:default_orientation: landscape
|
|
114
|
-
:user_agent: "Mozilla/5.0 (Linux;
|
|
120
|
+
:user_agent: "Mozilla/5.0 (Linux; Android 4.0.4; GT-P6800 Build/IMM76D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36"
|
|
115
121
|
:google_nexus7:
|
|
116
122
|
:name: "Nexus 7 series"
|
|
117
123
|
:css_width: 960
|
|
118
124
|
:css_height: 600
|
|
119
125
|
:default_orientation: landscape
|
|
120
|
-
:user_agent: "Mozilla/5.0 (Linux; Android 4.
|
|
126
|
+
:user_agent: "Mozilla/5.0 (Linux; Android 4.4.4; Nexus 7 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36"
|
|
127
|
+
:google_nexus9:
|
|
128
|
+
:name: "Nexus 9 series"
|
|
129
|
+
:css_width: 1024
|
|
130
|
+
:css_height: 768
|
|
131
|
+
:default_orientation: landscape
|
|
132
|
+
:user_agent: "Mozilla/5.0 (Linux; Android 5.1.1; Nexus 9 Build/LMY48I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.84 Safari/537.36"
|
|
133
|
+
:google_nexus10:
|
|
134
|
+
:name: "Nexus 10 series"
|
|
135
|
+
:css_width: 1280
|
|
136
|
+
:css_height: 800
|
|
137
|
+
:default_orientation: landscape
|
|
138
|
+
:user_agent: "Mozilla/5.0 (Linux; Android 5.1; Nexus 10 Build/LMY47D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.109 Safari/537.36"
|
data/testcentricity_web.gemspec
CHANGED
|
@@ -14,10 +14,10 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.description = %q{
|
|
15
15
|
TestCentricity™ Web core generic framework for desktop and mobile web site testing implements a Page Object Model DSL
|
|
16
16
|
for use with Cucumber, Capybara, and Selenium-Webdriver. The TestCentricity™ Web gem supports running automated tests
|
|
17
|
-
against locally hosted desktop browsers (Firefox, Chrome, Safari,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
against locally hosted desktop browsers (Firefox, Chrome, Safari, or IE), locally hosted emulated mobile (iOS, Android,
|
|
18
|
+
Windows Phone, Blackberry) browsers using Firefox or Chrome, a "headless" browser (using Poltergeist and PhantomJS),
|
|
19
|
+
mobile Safari browsers on iOS device simulators (using Appium and XCode on OS X), or cloud hosted desktop or mobile
|
|
20
|
+
web browsers (using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services).}
|
|
21
21
|
spec.homepage = ''
|
|
22
22
|
spec.license = 'BSD3'
|
|
23
23
|
|
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: 0.9.9.
|
|
4
|
+
version: 0.9.9.2
|
|
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: 2016-06-
|
|
11
|
+
date: 2016-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -146,10 +146,10 @@ description: |2-
|
|
|
146
146
|
|
|
147
147
|
TestCentricity™ Web core generic framework for desktop and mobile web site testing implements a Page Object Model DSL
|
|
148
148
|
for use with Cucumber, Capybara, and Selenium-Webdriver. The TestCentricity™ Web gem supports running automated tests
|
|
149
|
-
against locally hosted desktop browsers (Firefox, Chrome, Safari,
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
149
|
+
against locally hosted desktop browsers (Firefox, Chrome, Safari, or IE), locally hosted emulated mobile (iOS, Android,
|
|
150
|
+
Windows Phone, Blackberry) browsers using Firefox or Chrome, a "headless" browser (using Poltergeist and PhantomJS),
|
|
151
|
+
mobile Safari browsers on iOS device simulators (using Appium and XCode on OS X), or cloud hosted desktop or mobile
|
|
152
|
+
web browsers (using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services).
|
|
153
153
|
email:
|
|
154
154
|
- testcentricity@gmail.com
|
|
155
155
|
executables: []
|