testcentricity_web 0.3.8 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a0349a04f8cbc83315ce2820d10334c013c4e39
4
- data.tar.gz: 160044d07cd07ead7a039e37625dda387dfe4f2f
3
+ metadata.gz: 01cc3f89b38f15eeef932151789dd4bbe7c7ba37
4
+ data.tar.gz: c8722b1ed3c748e25a32cc96e97ae01509fb9408
5
5
  SHA512:
6
- metadata.gz: 553e6ffc2d902d9090a234f96fc2586de351c61279762f2e153f972e52b4bf43db5723535b7c7929514b5ec90e91bedc5053a2e9a7a02cb063d3e68764b17a98
7
- data.tar.gz: 9a7ce9d2b3673855ffebe13bd772d6b0a231ab6f16819dd51cc5de344eb89a1804ab7392f40ddc857e36693cc7a333f9daa8d7487bb044ea9c33e1c38d91a23b
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
- Page Object and Data Object Model DSL, for use with Capybara. It supports testing against locally hosted
5
- desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers (using
6
- Firefox), or on cloud hosted browsers using the BrowserStack, Sauce Labs, or CrossBrowserTesting services.
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.
@@ -1,5 +1,6 @@
1
1
  require 'capybara/cucumber'
2
2
  require 'rspec/expectations'
3
+ require 'test/unit'
3
4
  require 'testcentricity_web/browser_helper'
4
5
  require 'testcentricity_web/data_objects_helper'
5
6
  require 'testcentricity_web/drag_drop_helper'
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '0.3.8'
2
+ VERSION = '0.3.9'
3
3
  end
@@ -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 and Data Object Model DSL, for use with Capybara. Supports testing against locally hosted
17
- desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers (using
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.8
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-25 00:00:00.000000000 Z
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 and Data Object Model DSL, for use with Capybara. Supports testing against locally hosted
163
- desktop browsers (Firefox, Chrome, Safari, IE, or Edge), locally hosted emulated mobile browsers (using
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: []