testcentricity_web 0.3.8 → 0.3.9
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 +11 -6
- data/lib/testcentricity_web.rb +1 -0
- data/lib/testcentricity_web/version.rb +1 -1
- data/testcentricity_web.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 01cc3f89b38f15eeef932151789dd4bbe7c7ba37
|
|
4
|
+
data.tar.gz: c8722b1ed3c748e25a32cc96e97ae01509fb9408
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1340aba8bfcb2ee8b44467c5c85ad25c0f72bce1c751cc91f326aae68a58f23359d0be6209b72e65c02533fd398b21ba22376a0d905071c2a8bab3fe019f0bde
|
|
7
|
+
data.tar.gz: 7393c318f54b7ebb2a2488cb3aee872999faca5b733f209f89f2c394efba9522ee700b5fa85331a197eb06900ca2100d9304604e8fbe6c7ab79a752301fc0c60
|
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# TestcentricityWeb
|
|
2
2
|
|
|
3
|
-
The TestCentricity™ core generic framework for desktop and responsive mobile web site testing implements a
|
|
4
|
-
|
|
5
|
-
desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers (using
|
|
6
|
-
|
|
3
|
+
The TestCentricity™ core generic framework for desktop and responsive mobile web site testing implements a Page Object
|
|
4
|
+
and Data Object Model DSL, for use with Capybara and selenium-webdriver. It supports testing against locally hosted
|
|
5
|
+
desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers (using Firefox), or
|
|
6
|
+
on cloud hosted browsers using the BrowserStack, Sauce Labs, or CrossBrowserTesting services.
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
@@ -26,8 +26,13 @@ Or install it yourself as:
|
|
|
26
26
|
If you are using Cucumber, you must require the following in your env.rb file:
|
|
27
27
|
|
|
28
28
|
require 'capybara/cucumber'
|
|
29
|
-
require 'test/unit'
|
|
30
29
|
require 'testcentricity_web'
|
|
30
|
+
|
|
31
|
+
If you choose to not connect to WebDriver using the ***WebDriverConnect.initialize_web_driver*** method, or if you need to
|
|
32
|
+
directly call methods in selenium-webdriver, you will also need to require the following in your env.rb file:
|
|
33
|
+
|
|
34
|
+
require 'selenium-webdriver'
|
|
35
|
+
|
|
31
36
|
|
|
32
37
|
|
|
33
38
|
## Usage
|
|
@@ -35,7 +40,7 @@ If you are using Cucumber, you must require the following in your env.rb file:
|
|
|
35
40
|
TODO: Write usage instructions here
|
|
36
41
|
|
|
37
42
|
|
|
38
|
-
## Copyright
|
|
43
|
+
## Copyright and License
|
|
39
44
|
|
|
40
45
|
TestCentricity (tm) Framework is Copyright (c) 2014-2016, Tony Mrozinski.
|
|
41
46
|
All rights reserved.
|
data/lib/testcentricity_web.rb
CHANGED
data/testcentricity_web.gemspec
CHANGED
|
@@ -13,9 +13,9 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.summary = %q{A Page Object and Data Object Model Framework for desktop and responsive mobile web testing}
|
|
14
14
|
spec.description = %q{
|
|
15
15
|
TestCentricity™ core generic framework for desktop and responsive mobile web site testing implements a
|
|
16
|
-
Page Object
|
|
17
|
-
desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers
|
|
18
|
-
Firefox), or on cloud hosted browsers on BrowserStack, Sauce Labs, or CrossBrowserTesting.}
|
|
16
|
+
Page Object Model DSL, for use with Capybara and selenium-webdriver. Supports testing against locally
|
|
17
|
+
hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers
|
|
18
|
+
(using Firefox), or on cloud hosted browsers on BrowserStack, Sauce Labs, or CrossBrowserTesting.}
|
|
19
19
|
spec.homepage = ''
|
|
20
20
|
spec.license = 'BSD3'
|
|
21
21
|
|
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.3.
|
|
4
|
+
version: 0.3.9
|
|
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-02-
|
|
11
|
+
date: 2016-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -159,9 +159,9 @@ dependencies:
|
|
|
159
159
|
description: |2-
|
|
160
160
|
|
|
161
161
|
TestCentricity™ core generic framework for desktop and responsive mobile web site testing implements a
|
|
162
|
-
Page Object
|
|
163
|
-
desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers
|
|
164
|
-
Firefox), or on cloud hosted browsers on BrowserStack, Sauce Labs, or CrossBrowserTesting.
|
|
162
|
+
Page Object Model DSL, for use with Capybara and selenium-webdriver. Supports testing against locally
|
|
163
|
+
hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers
|
|
164
|
+
(using Firefox), or on cloud hosted browsers on BrowserStack, Sauce Labs, or CrossBrowserTesting.
|
|
165
165
|
email:
|
|
166
166
|
- test_automation@icloud.com
|
|
167
167
|
executables: []
|