testcentricity_web 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -3
- data/lib/testcentricity_web/version.rb +1 -1
- data/testcentricity_web.gemspec +1 -0
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33852cf8ec1bdc696933c6be66cdfd79a7df2d43
|
4
|
+
data.tar.gz: b811c8144d533196264a9fbe6c07e212d17eb15d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d1933efb7e261d71bbae9ee2022cadb0630ddc0b031d27231c5d4491827b3fb29ba4010386987ad6678c404d0eaef7035081dd1efb0bffcce30a5c0165352f
|
7
|
+
data.tar.gz: 980af33cee73cf1a5796568f568bdc41d27a96be43d6afa30d300797a236ed05e68ca0f5c4e4c4b414fbfce5229cf27d563394368fd55e660db346d186afdef4
|
data/README.md
CHANGED
@@ -24,11 +24,10 @@ feature incomplete and potentially unstable. More information can be found [here
|
|
24
24
|
|
25
25
|
## What's New
|
26
26
|
|
27
|
-
###Version 2.3.
|
27
|
+
###Version 2.3.1
|
28
28
|
|
29
29
|
* When testing using the remotely hosted browsers on the BrowserStack service, the BrowserStack Local instance is automatically started if the `TUNNELING`
|
30
|
-
Environment Variable is set to `true`. `Environ.tunneling` will be set to true if the BrowserStack Local instance is succesfully started.
|
31
|
-
[browserstack-local gem](https://rubygems.org/gems/browserstack-local).
|
30
|
+
Environment Variable is set to `true`. `Environ.tunneling` will be set to true if the BrowserStack Local instance is succesfully started.
|
32
31
|
* Added `TestCentricity::WebDriverConnect.close_tunnel` method to close BrowserStack Local instance when Local testing is enabled. Refer to the
|
33
32
|
**Remotely hosted desktop and mobile web browsers** section for information on usage.
|
34
33
|
|
data/testcentricity_web.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- A.J. Mrozinski
|
@@ -176,6 +176,20 @@ dependencies:
|
|
176
176
|
- - ">="
|
177
177
|
- !ruby/object:Gem::Version
|
178
178
|
version: '0'
|
179
|
+
- !ruby/object:Gem::Dependency
|
180
|
+
name: browserstack-local
|
181
|
+
requirement: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - ">="
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: '0'
|
186
|
+
type: :runtime
|
187
|
+
prerelease: false
|
188
|
+
version_requirements: !ruby/object:Gem::Requirement
|
189
|
+
requirements:
|
190
|
+
- - ">="
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: '0'
|
179
193
|
description: |2-
|
180
194
|
|
181
195
|
The TestCentricity™ Web core generic framework for desktop and mobile web site testing implements a Page Object Model DSL
|