testcentricity_web 2.3.15 → 2.3.15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/testcentricity_web/exception_queue_helper.rb +7 -0
- data/lib/testcentricity_web/page_objects_helper.rb +3 -0
- data/lib/testcentricity_web/page_sections_helper.rb +3 -0
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_elements/ui_elements_helper.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bfc2d05554b6d3b0325861b0684ad700d4996ed
|
4
|
+
data.tar.gz: aa970d336156379d22a89fc818239f3ab9f4ee04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56c24b4835d2ae5454c52ef17709b6150843ee297051a1d85f8a6fc1dde356cb155a0a7b2d236a70a7185a3c3c57f37a993c30b30a518dc3971f796de0eab2de
|
7
|
+
data.tar.gz: 909fef42e2a8d339315ee0708ae747747b19013d9918327d88dc30eacd156c92bc215d29b402204ca00675c27e85dfc3cc656cea24adb42f4a676f209e20f4a1
|
data/README.md
CHANGED
@@ -140,6 +140,7 @@ use the [parallel_tests gem](https://rubygems.org/gems/parallel_tests) to decrea
|
|
140
140
|
###Version 2.3.15
|
141
141
|
|
142
142
|
* Fixed bug in `UIElement.get_object_type` method that could result in a `NoMethodError obj not defined` error.
|
143
|
+
* Fixed bug in `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods that failed to enqueue errors when UI elements could not be found.
|
143
144
|
|
144
145
|
###Version 2.3.8
|
145
146
|
|
@@ -480,7 +480,7 @@ module TestCentricity
|
|
480
480
|
def object_not_found_exception(obj, obj_type)
|
481
481
|
@alt_locator.nil? ? locator = @locator : locator = @alt_locator
|
482
482
|
obj_type.nil? ? object_type = 'Object' : object_type = obj_type
|
483
|
-
raise "#{object_type} named '#{@name}' (#{locator}) not found" unless obj
|
483
|
+
raise ObjectNotFoundError("#{object_type} named '#{@name}' (#{locator}) not found") unless obj
|
484
484
|
end
|
485
485
|
|
486
486
|
def invalid_object_type_exception(obj, obj_type)
|