testcentricity_web 0.9.0 → 0.9.0.1
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 +3 -3
- data/lib/testcentricity_web/version.rb +1 -1
- data/testcentricity_web.gemspec +9 -6
- metadata +11 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2adc9a4dabc15820e247311ed88356ee0e45acc
|
|
4
|
+
data.tar.gz: 0b060aa17cc17c580f03fa50179492d7fc16b106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8520981b5a3152275e61075751ab286391efbd228e5aa2755fdfe3de9a80e59ca4630c6fec7db23e1f4c2ab37d405f1bca8f2f9a37183b2d52b6c21ba4b2fbec
|
|
7
|
+
data.tar.gz: 8d049c0159593432de27f4dde82c7bb5c6814b283d4d9e65525b739ca2258972a8bde2815377176059425b05d59d994f2858f5778cabb0f92668d3bfecc3747d
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ use with Cucumber, Capybara, and Selenium-Webdriver.
|
|
|
9
9
|
The TestCentricity™ Web gem supports running testing against the following web test targets:
|
|
10
10
|
|
|
11
11
|
* locally hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge)
|
|
12
|
-
* locally hosted emulated iOS, Android,
|
|
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)
|
|
15
15
|
* cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
|
|
@@ -422,7 +422,7 @@ to `chrome`.
|
|
|
422
422
|
### Mobile Safari browser on iOS Simulators
|
|
423
423
|
|
|
424
424
|
You can run your mobile web tests against the mobile Safari browser on simulated iOS devices using Appium and XCode on OS X. You will need to install
|
|
425
|
-
XCode and Appium, and ensure that the `appium_capybara` gem is installed and required as described above.
|
|
425
|
+
XCode and Appium, and ensure that the `appium_capybara` gem is installed and required as described in section 2.4 (Setup - Using Appium) above.
|
|
426
426
|
|
|
427
427
|
Once your test environment is properly configured, the following **Environment Variables** must be set as described in the table below.
|
|
428
428
|
|
|
@@ -914,7 +914,7 @@ landscape orientation running on the BrowserStack service:
|
|
|
914
914
|
|
|
915
915
|
## Web Test Automation Framework Implementation
|
|
916
916
|
|
|
917
|
-
<img src="http://i.imgur.com/
|
|
917
|
+
<img src="http://i.imgur.com/RvpxjzW.jpg" width="1024" alt="Web Framework Overview" title="Web Framework Overview">
|
|
918
918
|
|
|
919
919
|
|
|
920
920
|
|
data/testcentricity_web.gemspec
CHANGED
|
@@ -9,14 +9,17 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.platform = Gem::Platform::RUBY
|
|
10
10
|
spec.required_ruby_version = '>= 2.1.1'
|
|
11
11
|
spec.authors = ['A.J. Mrozinski']
|
|
12
|
-
spec.email = ['
|
|
12
|
+
spec.email = ['testcentricity@gmail.com']
|
|
13
13
|
spec.summary = %q{A Page Object and Data Object Model Framework for desktop and mobile web testing}
|
|
14
14
|
spec.description = %q{
|
|
15
|
-
TestCentricity™ core generic framework for desktop and mobile web site testing implements a Page Object Model DSL
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
TestCentricity™ Web core generic framework for desktop and mobile web site testing implements a Page Object Model DSL for use
|
|
16
|
+
with Cucumber, Capybara, and Selenium-Webdriver. The TestCentricity™ Web gem supports running testing against the following
|
|
17
|
+
web test targets:
|
|
18
|
+
* locally hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge)
|
|
19
|
+
* locally hosted emulated iOS, Android, Windows Phone, or Blackberry mobile browsers (using Firefox or Chrome)
|
|
20
|
+
* a "headless" browser (using Poltergeist and PhantomJS)
|
|
21
|
+
* mobile Safari browsers on iOS device simulators (using Appium and XCode on OS X)
|
|
22
|
+
* cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.}
|
|
20
23
|
spec.homepage = ''
|
|
21
24
|
spec.license = 'BSD3'
|
|
22
25
|
|
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.0
|
|
4
|
+
version: 0.9.0.1
|
|
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-05-
|
|
11
|
+
date: 2016-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -144,13 +144,16 @@ dependencies:
|
|
|
144
144
|
version: 1.1.1
|
|
145
145
|
description: |2-
|
|
146
146
|
|
|
147
|
-
TestCentricity™ core generic framework for desktop and mobile web site testing implements a Page Object Model DSL
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
147
|
+
TestCentricity™ Web core generic framework for desktop and mobile web site testing implements a Page Object Model DSL for use
|
|
148
|
+
with Cucumber, Capybara, and Selenium-Webdriver. The TestCentricity™ Web gem supports running testing against the following
|
|
149
|
+
web test targets:
|
|
150
|
+
* locally hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge)
|
|
151
|
+
* locally hosted emulated iOS, Android, Windows Phone, or Blackberry mobile browsers (using Firefox or Chrome)
|
|
152
|
+
* a "headless" browser (using Poltergeist and PhantomJS)
|
|
153
|
+
* mobile Safari browsers on iOS device simulators (using Appium and XCode on OS X)
|
|
154
|
+
* cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
|
|
152
155
|
email:
|
|
153
|
-
-
|
|
156
|
+
- testcentricity@gmail.com
|
|
154
157
|
executables: []
|
|
155
158
|
extensions: []
|
|
156
159
|
extra_rdoc_files: []
|