testcentricity_web 3.2.4 → 3.2.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2d727d3ecf1ba14dc1afc923c8b6598211dcbd1d35003a0ce242204f7f5cbf6
|
4
|
+
data.tar.gz: 247bcf00e67ee34d8b4d8b55fae4cb902d2dd63560d9aaf18dc93f67bdeb4f71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 935acae2894744449e3e8a968c100802bfcb5ee08ba207afa0b1b30a0b386d972eb7334ffa8bdbff7e0924fb238d8a2fe8ec02af17f6fc171f813503759d33c6
|
7
|
+
data.tar.gz: 5409ded2396864a06a366e6a811ebc6a516bceedcf3d9fdfa97c874dfa8e0cdc219eb1b02c0978b3f0a39ae8bfb82295ad45d18acad358ae59403a95d955a4cb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [3.2.5] - 25-JAN-2020
|
5
|
+
|
6
|
+
### Added
|
7
|
+
* Added `UIElement.content_editable?` method.
|
8
|
+
* Updated `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods to support verification of the
|
9
|
+
`content_editable` property.
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
* Fixed `UIElement.aria_multiselectable?` method.
|
13
|
+
|
4
14
|
## [3.2.4] - 16-JAN-2020
|
5
15
|
|
6
16
|
### Added
|
@@ -38,7 +48,6 @@ properties:
|
|
38
48
|
* `aria_multiselectable`
|
39
49
|
* `aria_controls`
|
40
50
|
|
41
|
-
|
42
51
|
## [3.2.2] - 16-OCT-2019
|
43
52
|
|
44
53
|
### Added
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -923,14 +923,25 @@ module TestCentricity
|
|
923
923
|
state.boolean? ? state : state == 'true'
|
924
924
|
end
|
925
925
|
|
926
|
-
# Return state of UI object's aria-
|
926
|
+
# Return state of UI object's aria-multiselectable property
|
927
927
|
#
|
928
928
|
# @return [Boolean]
|
929
929
|
# @example
|
930
930
|
# channels_select.aria_multiselectable?
|
931
931
|
#
|
932
932
|
def aria_multiselectable?
|
933
|
-
state = get_attribute('aria-
|
933
|
+
state = get_attribute('aria-multiselectable')
|
934
|
+
state.boolean? ? state : state == 'true'
|
935
|
+
end
|
936
|
+
|
937
|
+
# Return state of UI object's contenteditable property
|
938
|
+
#
|
939
|
+
# @return [Boolean]
|
940
|
+
# @example
|
941
|
+
# description_field.content_editable?
|
942
|
+
#
|
943
|
+
def content_editable?
|
944
|
+
state = get_attribute('contenteditable')
|
934
945
|
state.boolean? ? state : state == 'true'
|
935
946
|
end
|
936
947
|
|
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: 3.2.
|
4
|
+
version: 3.2.5
|
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: 2020-01-
|
11
|
+
date: 2020-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|