testcentricity_apps 4.0.14 → 4.1.0
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 +22 -13
- data/LICENSE.md +1 -1
- data/README.md +375 -248
- data/lib/testcentricity_apps/app_core/appium_connect_helper.rb +59 -71
- data/lib/testcentricity_apps/app_core/screen_object.rb +58 -12
- data/lib/testcentricity_apps/app_core/screen_objects_helper.rb +29 -15
- 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 +3 -7
- data/lib/testcentricity_apps/data_objects/environment.rb +2 -54
- 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 +23 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b4e82b184c5597d7aec89e022b126b08f005daa00519c60dfd2907edaeef661
|
|
4
|
+
data.tar.gz: 2035f556dcd2f033655c4edcf65d2ba1c7b2661cc920e052abef475178e5d681
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 783f2dff9161ff6fa835a410ed4baa0e2ad67bd8ddc5fffebaad70f85f178d82a8edf1d0cb9995156a2f1783c3c5687de71359634d99f5f13312958f5e91a848
|
|
7
|
+
data.tar.gz: af7d790c29b515dd86af8201b1032ca6d1bc8e308453ea6c3b6ecc67d931e59e8b3d15cdca914f2cf937855827016e0f69f2ad4717a4f7733ebea3b15feffa29
|
data/CHANGELOG.md
CHANGED
|
@@ -2,24 +2,43 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
## [4.0
|
|
5
|
+
## [4.1.0] - 09-DEC-2025
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
* Added `AppTable` class to support validation of tables in MacOS desktop and native mobile apps.
|
|
9
|
+
* Added `AppUIElement.right_click` method for MacOS desktop app testing.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
* Updated `appium_lib` gem to version 16.1.0.
|
|
13
|
+
* Updated `appium_lib_core` gem to version 11.2.0.
|
|
14
|
+
* No longer bundling `selenium-webdriver` as a runtime dependency.
|
|
15
|
+
* Update Nokogiri gem to address CVE-2025-6021, CVE-2025-6170, CVE-2025-49794, CVE-2025-49795, and CVE-2025-49796.
|
|
16
|
+
* Update REXML gem to address DoS vulnerability when parsing XML containing multiple XML declarations.
|
|
17
|
+
* Ruby version 3.1.0 or greater is now required.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [4.0.15] - 13-NOV-2024
|
|
6
21
|
|
|
7
22
|
### Changed
|
|
23
|
+
* Updated `selenium-webdriver` gem to version 4.26.0.
|
|
24
|
+
* Updated `rexml` gem to latest version to address ReDoS vulnerability.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [4.0.14] - 25-SEP-2024
|
|
8
28
|
|
|
29
|
+
### Changed
|
|
9
30
|
* Updated `selenium-webdriver` gem to version 4.25.0.
|
|
10
31
|
|
|
11
32
|
|
|
12
33
|
## [4.0.13] - 01-SEP-2024
|
|
13
34
|
|
|
14
35
|
### Changed
|
|
15
|
-
|
|
16
36
|
* Updated `selenium-webdriver` gem to version 4.24.0.
|
|
17
37
|
|
|
18
38
|
|
|
19
39
|
## [4.0.12] - 09-AUG-2024
|
|
20
40
|
|
|
21
41
|
### Changed
|
|
22
|
-
|
|
23
42
|
* Updated `appium_lib` gem to version 15.2.2.
|
|
24
43
|
* Updated `appium_lib_core` gem to version 9.2.1.
|
|
25
44
|
|
|
@@ -27,7 +46,6 @@ All notable changes to this project will be documented in this file.
|
|
|
27
46
|
## [4.0.11] - 28-JULY-2024
|
|
28
47
|
|
|
29
48
|
### Changed
|
|
30
|
-
|
|
31
49
|
* Updated `selenium-webdriver` gem to version 4.23.0.
|
|
32
50
|
* Updated `appium_lib` gem to version 15.2.0.
|
|
33
51
|
* Updated `appium_lib_core` gem to version 9.2.0.
|
|
@@ -42,14 +60,12 @@ All notable changes to this project will be documented in this file.
|
|
|
42
60
|
## [4.0.9] - 23-JUNE-2024
|
|
43
61
|
|
|
44
62
|
### Changed
|
|
45
|
-
|
|
46
63
|
* Updated `selenium-webdriver` gem to version 4.22.0.
|
|
47
64
|
|
|
48
65
|
|
|
49
66
|
## [4.0.8] - 03-JUNE-2024
|
|
50
67
|
|
|
51
68
|
### Fixed
|
|
52
|
-
|
|
53
69
|
* When testing using locally hosted iOS simulators or physical devices, and when not passing an options hash to specify
|
|
54
70
|
desired capabilities, the `AppiumConnect.initialize_appium` method now correctly sets the following XCUItest capabilities:
|
|
55
71
|
* `appium:webviewConnectTimeout` capability is now correctly specified as an `Integer`
|
|
@@ -60,7 +76,6 @@ All notable changes to this project will be documented in this file.
|
|
|
60
76
|
class for Android platform.
|
|
61
77
|
|
|
62
78
|
### Changed
|
|
63
|
-
|
|
64
79
|
* Updated `appium_lib` gem to version 15.1.0.
|
|
65
80
|
* Updated `appium_lib_core` gem to version 9.1.1.
|
|
66
81
|
* Updated `selenium-webdriver` gem to version 4.21.1.
|
|
@@ -77,7 +92,6 @@ All notable changes to this project will be documented in this file.
|
|
|
77
92
|
* `ScreenObject.populate_data_fields` and `ScreenSection.populate_data_fields` methods now support radio buttons.
|
|
78
93
|
|
|
79
94
|
### Changed
|
|
80
|
-
|
|
81
95
|
* Updated `selenium-webdriver` gem to version 4.20.1.
|
|
82
96
|
* Updated `appium_lib_core` gem to version 8.0.2.
|
|
83
97
|
|
|
@@ -85,21 +99,18 @@ All notable changes to this project will be documented in this file.
|
|
|
85
99
|
## [4.0.6] - 02-MAY-2024
|
|
86
100
|
|
|
87
101
|
### Fixed
|
|
88
|
-
|
|
89
102
|
* `ScreenSection.find_section` is now able to find `ScreenSection` objects embedded within other `ScreenSections`.
|
|
90
103
|
|
|
91
104
|
|
|
92
105
|
## [4.0.5] - 29-APR-2024
|
|
93
106
|
|
|
94
107
|
### Fixed
|
|
95
|
-
|
|
96
108
|
* `ScreenSection.disabled?` no longer returns wrong values.
|
|
97
109
|
|
|
98
110
|
|
|
99
111
|
## [4.0.4] - 26-APR-2024
|
|
100
112
|
|
|
101
113
|
### Changed
|
|
102
|
-
|
|
103
114
|
* Updated `selenium-webdriver` gem to version 4.20.0.
|
|
104
115
|
* Updated `appium_lib` gem to version 15.0.0.
|
|
105
116
|
* Updated `appium_lib_core` gem to version 8.0.1.
|
|
@@ -109,7 +120,6 @@ All notable changes to this project will be documented in this file.
|
|
|
109
120
|
## [4.0.3] - 05-APR-2024
|
|
110
121
|
|
|
111
122
|
### Fixed
|
|
112
|
-
|
|
113
123
|
* `AppiumConnect.initialize_appium`, `AppiumServer.start`, and `AppiumServer.running?` methods now support Appium version 2.x.
|
|
114
124
|
Backward compatibility with Appium version 1.x is provided if `APPIUM_SERVER_VERSION` Environment Variable is set to `1`.
|
|
115
125
|
|
|
@@ -117,7 +127,6 @@ Backward compatibility with Appium version 1.x is provided if `APPIUM_SERVER_VER
|
|
|
117
127
|
## [4.0.2] - 27-MAR-2024
|
|
118
128
|
|
|
119
129
|
### Changed
|
|
120
|
-
|
|
121
130
|
* Updated `selenium-webdriver` gem to version 4.19.0.
|
|
122
131
|
|
|
123
132
|
|
data/LICENSE.md
CHANGED