testcentricity_apps 4.0.15 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ab12953bace3c2088c95abe11b36fac9501a8125187ed90e26d3d98837611ec
4
- data.tar.gz: 89a577da8c2eda0189cf22b24f006c2b2fe742df5f1edf168af30ad4d2c846b6
3
+ metadata.gz: b9ac02a673f61d2ac2e77b8b24c00adfd27c73caa78ffb28e28279f311bcf838
4
+ data.tar.gz: 2bbf12bcfd0008f92dcd2a79d7a050cc6ff5fcc9dfee48b14a2e2162ec83f04f
5
5
  SHA512:
6
- metadata.gz: f3825e3b2fbea114c6d1a2e9738a90a4f336308618fcfbbaf17038043b7b5dba3136b87f9d547a154832ee694de0c073220f064146fc6b75b611cb2d593fd782
7
- data.tar.gz: 1226fe0b2a94f0867ae6dd1b315e704600782dd80973aebf04bfbaf5adb1482a452b49a07288e6b3d2b8ebba843bc2844a46e6f6bd12d0c51e619e193b6df83f
6
+ metadata.gz: dbf72b0b195024e207159ed83d37086e9b1eac1d5946c93dc1950a768687bd9f12edd387c5373e52917c91a371754138b1577534a5a7c3c57b31c158ecfda974
7
+ data.tar.gz: 2890798258cb79be67cb85ebce8525504f5f19ae9378d323af2f037c578032dea5839e50bca178450895d4814e71c989c02f3635224ec5b9864f3859f9ffa26b
data/CHANGELOG.md CHANGED
@@ -2,10 +2,50 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
4
 
5
- ## [4.0.15] - 13-NOV-2024
5
+ ## [4.1.1] - 03-FEB-2026
6
+
7
+
8
+ ### Added
9
+ * Updated `ScreenObject.verify_ui_states` and `ScreenSection.verify_ui_states` methods to support verification of the following
10
+ `AppTable` properties:
11
+ * `rowcount`
12
+ * `columncount`
13
+ * `column_headers`
14
+ * `row`
15
+ * `column`
16
+ * `cell`
17
+ * Added `DataSource.read_file` method capable of reading from `.yml`, `.json`, `.csv`, or `.xml` data files, and accepting
18
+ `options` hash for specifying hash key and value conversions to data being read prior to passing to `DataPresenter` objects.
6
19
 
7
20
  ### Changed
21
+ * Refactored `EnvironData.read` method to allow passing `options` hash for specifying hash key and value conversions to
22
+ data being read prior to passing to `DataPresenter` objects.
23
+ * Refactored `ScreenObject.populate_data_fields` and `ScreenSection.populate_data_fields` methods to support passing a
24
+ `Symbol` for a UI element's name to support using `DataPresenter` object attributes to source data.
25
+
26
+ ### Removed
27
+ * Unused `DataObject` class has been removed.
28
+ * Removed unused `DataSource.read_yaml_node_data` and `DataSource.read_json_node_data` methods.
29
+
30
+
31
+ ## [4.1.0] - 09-DEC-2025
32
+
33
+ ### Added
34
+ * Added `AppTable` class to support validation of tables in MacOS desktop and native mobile apps.
35
+ * Added `AppUIElement.right_click` method for MacOS desktop app testing.
36
+
37
+ ### Changed
38
+ * Updated `appium_lib` gem to version 16.1.0.
39
+ * Updated `appium_lib_core` gem to version 11.2.0.
40
+ * No longer bundling `selenium-webdriver` as a runtime dependency.
41
+ * Update Nokogiri gem to address CVE-2025-6021, CVE-2025-6170, CVE-2025-49794, CVE-2025-49795, and CVE-2025-49796.
42
+ * Update REXML gem to address DoS vulnerability when parsing XML containing multiple XML declarations.
43
+ * Ruby version 3.1.0 or greater is now required.
44
+
45
+
46
+ ## [4.0.15] - 13-NOV-2024
8
47
 
48
+ ### Changed
9
49
  * Updated `selenium-webdriver` gem to version 4.26.0.
10
50
  * Updated `rexml` gem to latest version to address ReDoS vulnerability.
11
51
 
@@ -13,21 +53,18 @@ All notable changes to this project will be documented in this file.
13
53
  ## [4.0.14] - 25-SEP-2024
14
54
 
15
55
  ### Changed
16
-
17
56
  * Updated `selenium-webdriver` gem to version 4.25.0.
18
57
 
19
58
 
20
59
  ## [4.0.13] - 01-SEP-2024
21
60
 
22
61
  ### Changed
23
-
24
62
  * Updated `selenium-webdriver` gem to version 4.24.0.
25
63
 
26
64
 
27
65
  ## [4.0.12] - 09-AUG-2024
28
66
 
29
67
  ### Changed
30
-
31
68
  * Updated `appium_lib` gem to version 15.2.2.
32
69
  * Updated `appium_lib_core` gem to version 9.2.1.
33
70
 
@@ -35,7 +72,6 @@ All notable changes to this project will be documented in this file.
35
72
  ## [4.0.11] - 28-JULY-2024
36
73
 
37
74
  ### Changed
38
-
39
75
  * Updated `selenium-webdriver` gem to version 4.23.0.
40
76
  * Updated `appium_lib` gem to version 15.2.0.
41
77
  * Updated `appium_lib_core` gem to version 9.2.0.
@@ -50,14 +86,12 @@ All notable changes to this project will be documented in this file.
50
86
  ## [4.0.9] - 23-JUNE-2024
51
87
 
52
88
  ### Changed
53
-
54
89
  * Updated `selenium-webdriver` gem to version 4.22.0.
55
90
 
56
91
 
57
92
  ## [4.0.8] - 03-JUNE-2024
58
93
 
59
94
  ### Fixed
60
-
61
95
  * When testing using locally hosted iOS simulators or physical devices, and when not passing an options hash to specify
62
96
  desired capabilities, the `AppiumConnect.initialize_appium` method now correctly sets the following XCUItest capabilities:
63
97
  * `appium:webviewConnectTimeout` capability is now correctly specified as an `Integer`
@@ -68,7 +102,6 @@ All notable changes to this project will be documented in this file.
68
102
  class for Android platform.
69
103
 
70
104
  ### Changed
71
-
72
105
  * Updated `appium_lib` gem to version 15.1.0.
73
106
  * Updated `appium_lib_core` gem to version 9.1.1.
74
107
  * Updated `selenium-webdriver` gem to version 4.21.1.
@@ -85,7 +118,6 @@ All notable changes to this project will be documented in this file.
85
118
  * `ScreenObject.populate_data_fields` and `ScreenSection.populate_data_fields` methods now support radio buttons.
86
119
 
87
120
  ### Changed
88
-
89
121
  * Updated `selenium-webdriver` gem to version 4.20.1.
90
122
  * Updated `appium_lib_core` gem to version 8.0.2.
91
123
 
@@ -93,21 +125,18 @@ All notable changes to this project will be documented in this file.
93
125
  ## [4.0.6] - 02-MAY-2024
94
126
 
95
127
  ### Fixed
96
-
97
128
  * `ScreenSection.find_section` is now able to find `ScreenSection` objects embedded within other `ScreenSections`.
98
129
 
99
130
 
100
131
  ## [4.0.5] - 29-APR-2024
101
132
 
102
133
  ### Fixed
103
-
104
134
  * `ScreenSection.disabled?` no longer returns wrong values.
105
135
 
106
136
 
107
137
  ## [4.0.4] - 26-APR-2024
108
138
 
109
139
  ### Changed
110
-
111
140
  * Updated `selenium-webdriver` gem to version 4.20.0.
112
141
  * Updated `appium_lib` gem to version 15.0.0.
113
142
  * Updated `appium_lib_core` gem to version 8.0.1.
@@ -117,7 +146,6 @@ All notable changes to this project will be documented in this file.
117
146
  ## [4.0.3] - 05-APR-2024
118
147
 
119
148
  ### Fixed
120
-
121
149
  * `AppiumConnect.initialize_appium`, `AppiumServer.start`, and `AppiumServer.running?` methods now support Appium version 2.x.
122
150
  Backward compatibility with Appium version 1.x is provided if `APPIUM_SERVER_VERSION` Environment Variable is set to `1`.
123
151
 
@@ -125,7 +153,6 @@ Backward compatibility with Appium version 1.x is provided if `APPIUM_SERVER_VER
125
153
  ## [4.0.2] - 27-MAR-2024
126
154
 
127
155
  ### Changed
128
-
129
156
  * Updated `selenium-webdriver` gem to version 4.19.0.
130
157
 
131
158
 
data/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2024, Tony Mrozinski
1
+ Copyright (c) 2014-2026, Tony Mrozinski
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without