testcentricity_web 2.0.6 → 2.0.7
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/lib/testcentricity_web/elements/cell_element.rb +4 -0
- data/lib/testcentricity_web/page_objects_helper.rb +4 -0
- data/lib/testcentricity_web/page_sections_helper.rb +4 -0
- data/lib/testcentricity_web/ui_elements_helper.rb +2 -2
- data/lib/testcentricity_web/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0eba76180d539e2d04d50ac99a1ae070f1ae339
|
4
|
+
data.tar.gz: ca8190dabaa590c78e480eed846f36274dc50694
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d81505a46e4404075b0641d42b4988ac13e49adc513f70c03d533859c66ba6e116bf9896aa9ea6e478da1d3aeab3347e537d1152b785c39d989cb68435c6dfb
|
7
|
+
data.tar.gz: f1cf197fd3e731b08ec3edd97481002d667443137b40502aa0d8d2d020e44d5b66fc304f1cc56f7ace0061243bb7ad8d45ddcf76c93544493f9596df062047d3
|
@@ -469,6 +469,10 @@ module TestCentricity
|
|
469
469
|
actual = ui_object.get_table_column(value.to_i)
|
470
470
|
when :item
|
471
471
|
actual = ui_object.get_list_item(value.to_i)
|
472
|
+
when :attribute
|
473
|
+
actual = ui_object.get_attribute(value)
|
474
|
+
when :native_attribute
|
475
|
+
actual = ui_object.get_native_attribute(value)
|
472
476
|
end
|
473
477
|
end
|
474
478
|
else
|
@@ -540,6 +540,10 @@ module TestCentricity
|
|
540
540
|
actual = ui_object.get_table_column(value.to_i)
|
541
541
|
when :item
|
542
542
|
actual = ui_object.get_list_item(value.to_i)
|
543
|
+
when :attribute
|
544
|
+
actual = ui_object.get_attribute(value)
|
545
|
+
when :native_attribute
|
546
|
+
actual = ui_object.get_native_attribute(value)
|
543
547
|
end
|
544
548
|
end
|
545
549
|
else
|
@@ -333,13 +333,13 @@ module TestCentricity
|
|
333
333
|
end
|
334
334
|
|
335
335
|
def get_attribute(attrib)
|
336
|
-
obj, = find_element
|
336
|
+
obj, = find_element(false)
|
337
337
|
object_not_found_exception(obj, nil)
|
338
338
|
obj[attrib]
|
339
339
|
end
|
340
340
|
|
341
341
|
def get_native_attribute(attrib)
|
342
|
-
obj, = find_element
|
342
|
+
obj, = find_element(false)
|
343
343
|
object_not_found_exception(obj, nil)
|
344
344
|
obj.native.attribute(attrib)
|
345
345
|
end
|
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: 2.0.
|
4
|
+
version: 2.0.7
|
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: 2017-02-
|
11
|
+
date: 2017-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|