testcentricity_web 4.5.6 → 4.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +14 -8
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_core/webdriver_helper.rb +2 -2
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81e3ce8ee09530abd102258e25235af8032599eab54e067784ae3eb6349d2e18
|
4
|
+
data.tar.gz: 66f82ab5ceede12f34095be1aa4eb96d59c7f4e1adaade724e54aa39f0e7a222
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b954744d822885d35b580c233153f3346c4b31ea9ef7667916d816882ff0e3499e3fd162c80ff587529ae6f2c261dd209993f7db7b64af692d7edb7b2843329
|
7
|
+
data.tar.gz: 1b31ffb82f255889fb5403c5fc4aa9ffc9643715963eedb7abf6a49cfa76f4cb17cfbaa28d6a638665a9fac30e24eeb000911b83c44af30e0fdd1582b36ce1a7
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
4
|
|
5
|
+
## [4.5.7] - 25-APR-2024
|
6
|
+
|
7
|
+
### Changed
|
8
|
+
|
9
|
+
* Updated `selenium-webdriver` gem to version 4.20.0.
|
10
|
+
* Updated `appium_lib` gem to version 15.0.0.
|
11
|
+
* Updated `appium_lib_core` gem to version 8.0.1.
|
12
|
+
|
13
|
+
|
5
14
|
## [4.5.6] - 02-APR-2024
|
6
15
|
|
7
16
|
### Fixed
|
data/README.md
CHANGED
@@ -38,17 +38,23 @@ An example project that demonstrates the implementation of a page object model f
|
|
38
38
|
can be found [here](https://github.com/TestCentricity/tc_multi_webdriver_sample).
|
39
39
|
|
40
40
|
|
41
|
+
### Which gem should I use?
|
42
|
+
|
43
|
+
|
44
|
+
|
41
45
|
### Which gem should I use?
|
42
46
|
|
43
47
|
* The [TestCentricity **Web** gem](https://rubygems.org/gems/testcentricity_web) only supports testing of web interfaces via desktop and mobile web browsers
|
44
|
-
* The [TestCentricity **Mobile** gem](https://rubygems.org/gems/testcentricity_mobile) only supports testing of native iOS and
|
48
|
+
* The [TestCentricity **Mobile** gem](https://rubygems.org/gems/testcentricity_mobile) only supports testing of native iOS and Android mobile apps
|
49
|
+
* The [TestCentricity **Apps** gem](https://rubygems.org/gems/testcentricity_apps) only supports testing of MacOS desktop apps and native iOS and Android mobile apps
|
45
50
|
* The TestCentricity gem supports testing of native mobile apps and/or web interfaces via desktop and mobile web browsers.
|
46
51
|
|
47
|
-
| Tested platforms | TestCentricity Web | TestCentricity Mobile | TestCentricity |
|
48
|
-
|
49
|
-
| Desktop/mobile web browsers only | Yes | No | No |
|
50
|
-
| Native mobile iOS and/or Android apps only | No | Yes | No |
|
51
|
-
|
|
52
|
+
| Tested platforms | TestCentricity Web | TestCentricity Mobile | TestCentricity Apps | TestCentricity |
|
53
|
+
|----------------------------------------------------|--------------------|-----------------------|---------------------|----------------|
|
54
|
+
| Desktop/mobile web browsers only | Yes | No | No | No |
|
55
|
+
| Native mobile iOS and/or Android apps only | No | Yes | Yes | No |
|
56
|
+
| MacOS desktop apps | No | No | Yes | No |
|
57
|
+
| Native mobile apps and desktop/mobile web browsers | No | No | No | Yes |
|
52
58
|
|
53
59
|
|
54
60
|
## Installation
|
@@ -1952,7 +1958,7 @@ When using the `options` hash, the following options and capabilities must be sp
|
|
1952
1958
|
'appium:platformVersion': ios_version,
|
1953
1959
|
'appium:deviceName': device_or_simulator_name
|
1954
1960
|
},
|
1955
|
-
endpoint: 'http://localhost:4723
|
1961
|
+
endpoint: 'http://localhost:4723'
|
1956
1962
|
}
|
1957
1963
|
WebDriverConnect.initialize_web_driver(options)
|
1958
1964
|
```
|
@@ -2039,7 +2045,7 @@ When using the `options` hash, the following options and capabilities must be sp
|
|
2039
2045
|
'appium:deviceName': simulator_name,
|
2040
2046
|
'appium:avd': simulator_name
|
2041
2047
|
},
|
2042
|
-
endpoint: 'http://localhost:4723
|
2048
|
+
endpoint: 'http://localhost:4723'
|
2043
2049
|
}
|
2044
2050
|
WebDriverConnect.initialize_web_driver(options)
|
2045
2051
|
```
|
@@ -478,7 +478,7 @@ module TestCentricity
|
|
478
478
|
# define mobile device options
|
479
479
|
if ENV['BS_DEVICE']
|
480
480
|
bs_options[:deviceName] = ENV['BS_DEVICE']
|
481
|
-
bs_options[:appiumVersion] = '2.
|
481
|
+
bs_options[:appiumVersion] = '2.4.1'
|
482
482
|
{
|
483
483
|
browserName: browser,
|
484
484
|
'bstack:options': bs_options
|
@@ -486,7 +486,7 @@ module TestCentricity
|
|
486
486
|
else
|
487
487
|
# define desktop browser options
|
488
488
|
bs_options[:resolution] = ENV['RESOLUTION'] if ENV['RESOLUTION']
|
489
|
-
bs_options[:seleniumVersion] = '4.
|
489
|
+
bs_options[:seleniumVersion] = '4.19.1'
|
490
490
|
{
|
491
491
|
browserName: browser,
|
492
492
|
browserVersion: ENV['BS_VERSION'],
|
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: 4.5.
|
4
|
+
version: 4.5.7
|
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: 2024-04-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 9.
|
33
|
+
version: 9.2.0
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 9.
|
40
|
+
version: 9.2.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: docker-compose
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -156,14 +156,14 @@ dependencies:
|
|
156
156
|
requirements:
|
157
157
|
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version:
|
159
|
+
version: 15.0.0
|
160
160
|
type: :runtime
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version:
|
166
|
+
version: 15.0.0
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
168
|
name: browserstack-local
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -268,14 +268,14 @@ dependencies:
|
|
268
268
|
requirements:
|
269
269
|
- - '='
|
270
270
|
- !ruby/object:Gem::Version
|
271
|
-
version: 4.
|
271
|
+
version: 4.20.0
|
272
272
|
type: :runtime
|
273
273
|
prerelease: false
|
274
274
|
version_requirements: !ruby/object:Gem::Requirement
|
275
275
|
requirements:
|
276
276
|
- - '='
|
277
277
|
- !ruby/object:Gem::Version
|
278
|
-
version: 4.
|
278
|
+
version: 4.20.0
|
279
279
|
- !ruby/object:Gem::Dependency
|
280
280
|
name: test-unit
|
281
281
|
requirement: !ruby/object:Gem::Requirement
|