testcentricity_web 4.5.15 → 4.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -2
- data/LICENSE.md +1 -1
- data/README.md +3 -3
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_core/webdriver_helper.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8253e081f513b23a978707162ec766b492d1427412476597753fa51706da70ef
|
4
|
+
data.tar.gz: 5e004061228cb8e324d82d6190bd59b24538892cce22b04fc3bbe6632ceb9178
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3d79a6279228663cf477677b19879c70db77ee1f9e5c98cf7b36d3aa8c5edf6fb4ec14eec2e3a10bde612ed7af03bd3e0d91fbf678a455e1e1d3116b833cd6f
|
7
|
+
data.tar.gz: 154833dd9745bb678106ae51eb0d93a59555cc0d1931cdeea45975018263496ed189c74e5e9afd21d2a08dbacd018bb710c7ecf0664a40df645147f0b163c537
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,17 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
4
|
|
5
|
-
## [4.
|
5
|
+
## [4.6.0] - 25-JAN-2025
|
6
|
+
|
7
|
+
### Changed
|
8
|
+
|
9
|
+
* Updated `selenium-webdriver` gem to version 4.28.0.
|
10
|
+
* Updated `appium_lib` gem to version 15.3.0.
|
11
|
+
* Updated `appium_lib_core` gem to version 9.5.0.
|
12
|
+
* Ruby version 3.1.0 or greater is now required.
|
13
|
+
|
14
|
+
|
15
|
+
## [4.5.15] - 01-NOV-2024
|
6
16
|
|
7
17
|
### Changed
|
8
18
|
|
@@ -52,7 +62,7 @@ All notable changes to this project will be documented in this file.
|
|
52
62
|
### Fixed
|
53
63
|
|
54
64
|
* Added `cuke_modeler` gem as a development dependency so that Cucumber test results logging would not fail when running
|
55
|
-
tests in parallel with Ruby version 3.
|
65
|
+
tests in parallel with Ruby version 3.1.0 or greater.
|
56
66
|
|
57
67
|
|
58
68
|
## [4.5.9] - 23-JUNE-2024
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -53,7 +53,7 @@ Cucumber can be found [here](https://github.com/TestCentricity/tc_multi_webdrive
|
|
53
53
|
|
54
54
|
## Installation
|
55
55
|
|
56
|
-
TestCentricity For Web version 4.
|
56
|
+
TestCentricity For Web version 4.6 and above requires Ruby version 3.1.0 or later. To install the TestCentricity For Web gem,
|
57
57
|
add this line to your automation project's `Gemfile`:
|
58
58
|
|
59
59
|
gem 'testcentricity_web'
|
@@ -916,7 +916,7 @@ values appear in the associated text fields after entering data and performing a
|
|
916
916
|
}
|
917
917
|
verify_ui_states(ui)
|
918
918
|
|
919
|
-
# verify avatar src url does not contain /null/
|
919
|
+
# verify avatar src url does not contain /null/ in its file path
|
920
920
|
verify_ui_states(avatar_image => { src: { does_not_contain: "/null/" } })
|
921
921
|
end
|
922
922
|
```
|
@@ -3161,7 +3161,7 @@ area sub-folders as needed. Likewise, `PageSection` class definitions should be
|
|
3161
3161
|
---
|
3162
3162
|
## Copyright and License
|
3163
3163
|
|
3164
|
-
TestCentricity™ Framework is Copyright (c) 2014-
|
3164
|
+
TestCentricity™ Framework is Copyright (c) 2014-2025, Tony Mrozinski.
|
3165
3165
|
All rights reserved.
|
3166
3166
|
|
3167
3167
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
|
@@ -494,7 +494,7 @@ module TestCentricity
|
|
494
494
|
else
|
495
495
|
# define desktop browser options
|
496
496
|
bs_options[:resolution] = ENV['RESOLUTION'] if ENV['RESOLUTION']
|
497
|
-
bs_options[:seleniumVersion] = '4.
|
497
|
+
bs_options[:seleniumVersion] = '4.27.0'
|
498
498
|
{
|
499
499
|
browserName: browser,
|
500
500
|
browserVersion: ENV['BS_VERSION'],
|
@@ -564,7 +564,7 @@ module TestCentricity
|
|
564
564
|
else
|
565
565
|
# define desktop browser options
|
566
566
|
tb_options['screen-resolution'] = ENV['RESOLUTION'] if ENV['RESOLUTION']
|
567
|
-
tb_options['selenium-version'] = '4.
|
567
|
+
tb_options['selenium-version'] = '4.28.0'
|
568
568
|
end
|
569
569
|
{
|
570
570
|
browserName: browser,
|
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.
|
4
|
+
version: 4.6.0
|
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:
|
11
|
+
date: 2025-01-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.2.
|
33
|
+
version: 9.2.1
|
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.2.
|
40
|
+
version: 9.2.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: cuke_modeler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,14 +170,14 @@ dependencies:
|
|
170
170
|
requirements:
|
171
171
|
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 15.
|
173
|
+
version: 15.3.0
|
174
174
|
type: :runtime
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: 15.
|
180
|
+
version: 15.3.0
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: browserstack-local
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -282,14 +282,14 @@ dependencies:
|
|
282
282
|
requirements:
|
283
283
|
- - '='
|
284
284
|
- !ruby/object:Gem::Version
|
285
|
-
version: 4.
|
285
|
+
version: 4.28.0
|
286
286
|
type: :runtime
|
287
287
|
prerelease: false
|
288
288
|
version_requirements: !ruby/object:Gem::Requirement
|
289
289
|
requirements:
|
290
290
|
- - '='
|
291
291
|
- !ruby/object:Gem::Version
|
292
|
-
version: 4.
|
292
|
+
version: 4.28.0
|
293
293
|
- !ruby/object:Gem::Dependency
|
294
294
|
name: test-unit
|
295
295
|
requirement: !ruby/object:Gem::Requirement
|
@@ -384,7 +384,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
384
384
|
requirements:
|
385
385
|
- - ">="
|
386
386
|
- !ruby/object:Gem::Version
|
387
|
-
version: 3.
|
387
|
+
version: 3.1.0
|
388
388
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
389
389
|
requirements:
|
390
390
|
- - ">="
|