testcentricity_web 4.5.14 → 4.6.0

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
  SHA256:
3
- metadata.gz: 0e93a0e1cbeacb00134b7edac93d66216023a7764c531d5a75722165e5d49d66
4
- data.tar.gz: cd23620196c0c188273c07be2d830e8a28a599716e9090ff5b785a151459179e
3
+ metadata.gz: 8253e081f513b23a978707162ec766b492d1427412476597753fa51706da70ef
4
+ data.tar.gz: 5e004061228cb8e324d82d6190bd59b24538892cce22b04fc3bbe6632ceb9178
5
5
  SHA512:
6
- metadata.gz: b3cd5b94561900631c99c9b6ed2e276a31d370049ba72b2993280e05875619efb60507cc042c0f3c63f348fc075ee0e9685e34f858ecbfd3cd594dfda2257663
7
- data.tar.gz: b777491a2a3bae0b87c9545bfd4940e91956c26681b66e808090a4154bafe4520a2f0644f9ea7253c71362895fd30b8e0fa122dce3e1703bd7effec9db38f12c
6
+ metadata.gz: a3d79a6279228663cf477677b19879c70db77ee1f9e5c98cf7b36d3aa8c5edf6fb4ec14eec2e3a10bde612ed7af03bd3e0d91fbf678a455e1e1d3116b833cd6f
7
+ data.tar.gz: 154833dd9745bb678106ae51eb0d93a59555cc0d1931cdeea45975018263496ed189c74e5e9afd21d2a08dbacd018bb710c7ecf0664a40df645147f0b163c537
data/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
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
16
+
17
+ ### Changed
18
+
19
+ * Updated `selenium-webdriver` gem to version 4.26.0.
20
+ * Updated `rexml` gem to latest version to address ReDoS vulnerability.
21
+
22
+
5
23
  ## [4.5.14] - 09-OCT-2024
6
24
 
7
25
  ### Fixed
@@ -44,7 +62,7 @@ All notable changes to this project will be documented in this file.
44
62
  ### Fixed
45
63
 
46
64
  * Added `cuke_modeler` gem as a development dependency so that Cucumber test results logging would not fail when running
47
- tests in parallel with Ruby version 3.10 or greater.
65
+ tests in parallel with Ruby version 3.1.0 or greater.
48
66
 
49
67
 
50
68
  ## [4.5.9] - 23-JUNE-2024
data/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2024, Tony Mrozinski
1
+ Copyright (c) 2014-2025, Tony Mrozinski
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
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.4 and above requires Ruby version 3.0.0 or later. To install the TestCentricity For Web gem,
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/ institution id
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-2024, Tony Mrozinski.
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
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '4.5.14'
2
+ VERSION = '4.6.0'
3
3
  end
@@ -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.24.0'
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.25.0'
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.5.14
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: 2024-10-09 00:00:00.000000000 Z
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.0
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.0
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.2.2
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.2.2
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.25.0
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.25.0
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.0.0
387
+ version: 3.1.0
388
388
  required_rubygems_version: !ruby/object:Gem::Requirement
389
389
  requirements:
390
390
  - - ">="