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 +4 -4
- data/CHANGELOG.md +41 -14
- data/LICENSE.md +1 -1
- data/README.md +374 -248
- data/lib/testcentricity_apps/app_core/appium_connect_helper.rb +58 -70
- data/lib/testcentricity_apps/app_core/screen_object.rb +58 -12
- data/lib/testcentricity_apps/app_core/screen_objects_helper.rb +26 -12
- data/lib/testcentricity_apps/app_core/screen_section.rb +63 -20
- data/lib/testcentricity_apps/app_elements/alert.rb +8 -8
- data/lib/testcentricity_apps/app_elements/app_element.rb +39 -9
- data/lib/testcentricity_apps/app_elements/list.rb +4 -4
- data/lib/testcentricity_apps/app_elements/menu.rb +2 -2
- data/lib/testcentricity_apps/app_elements/menubar.rb +0 -22
- data/lib/testcentricity_apps/app_elements/selectlist.rb +5 -5
- data/lib/testcentricity_apps/app_elements/switch.rb +1 -1
- data/lib/testcentricity_apps/app_elements/table.rb +397 -0
- data/lib/testcentricity_apps/data_objects/data_objects_helper.rb +148 -53
- data/lib/testcentricity_apps/data_objects/environment.rb +21 -73
- data/lib/testcentricity_apps/exception_queue_helper.rb +9 -10
- data/lib/testcentricity_apps/utility_helpers.rb +1 -0
- data/lib/testcentricity_apps/version.rb +1 -1
- data/lib/testcentricity_apps.rb +1 -0
- metadata +42 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9ac02a673f61d2ac2e77b8b24c00adfd27c73caa78ffb28e28279f311bcf838
|
|
4
|
+
data.tar.gz: 2bbf12bcfd0008f92dcd2a79d7a050cc6ff5fcc9dfee48b14a2e2162ec83f04f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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