testcentricity_web 4.1.0 → 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 +13 -0
- data/README.md +202 -385
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_core/page_object.rb +12 -12
- data/lib/testcentricity_web/web_core/page_section.rb +14 -14
- data/lib/testcentricity_web/web_core/webdriver_helper.rb +194 -237
- data/testcentricity_web.gemspec +4 -5
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b12fc25c9cf0781a7c8d1e3da7db99f2887eb9648f5de7957e1cd10698f6fed9
|
4
|
+
data.tar.gz: c9fd999bbb151a5626f3f934bdd27b2c522e9b53729d3d221d596d5d4855ab37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcfe319938cbc21134b18259af144e73bf25ba8a14b1f35a718efe34c029dc46216e06d8f70a8786a7cd1cbd97f4cc9201e7884051ea66baed703eec1df89383
|
7
|
+
data.tar.gz: 37118e8d45ea994e7ebfba7a348319cba6c2c4dc4b6ccffcd0e8f61480730e0d2903302496a7cfc177989be49f3ea55a098ac295bb38c0d42d52b8e051686e5a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [4.1.1] - 03-MAR-2022
|
5
|
+
|
6
|
+
### Changed
|
7
|
+
* W3C WebDriver-compliant sessions using Selenium version 4.x are now supported when using the BrowserStack, LambdaTest, TestingBot,
|
8
|
+
and SauceLabs services.
|
9
|
+
* W3C WebDriver-compliant sessions are now supported when running against remote browsers hosted on Selenium Grid 4 and Dockerized Selenium
|
10
|
+
Grid 4 environments.
|
11
|
+
|
12
|
+
|
4
13
|
## [4.1.0] - 28-FEB-2022
|
5
14
|
|
6
15
|
### Added
|
@@ -17,6 +26,10 @@ All notable changes to this project will be documented in this file.
|
|
17
26
|
method to specify the locator for an associated `proxy` and/or `label` element. The `define_custom_elements` method can be
|
18
27
|
called from an `initialize` method for the `PageObject` or `PageSection` where the `checkbox` or `radio` is instantiated.
|
19
28
|
* Ruby version 2.7 or greater required.
|
29
|
+
* Selenium-Webdriver version 4 or greater required.
|
30
|
+
|
31
|
+
### Removed
|
32
|
+
* Support for CrossBrowserTesting and Gridlastic cloud hosted Selenium grids have been removed.
|
20
33
|
|
21
34
|
|
22
35
|
## [4.0.3] - 30-DEC-2021
|