ole-qa-framework 3.9.2 → 3.9.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec99438fcce292e2f9bd6beb8b76cb700c041c1a
4
- data.tar.gz: 73f4e991a028420e0ff652dfa638dcf9c84dfd33
3
+ metadata.gz: 9b67667dbc8792e9368c2920de855bd711826a04
4
+ data.tar.gz: 7fcdf29a8631f080c7cd2f33dd8eb94a14aaf670
5
5
  SHA512:
6
- metadata.gz: 968cc8da0c1f8686e578bd57b1cb3eac26886040fd305b694f6f4b7b4934941c977e85b55ebc2df63f427170821190f276ed8613b77a3c7806c2bf00bcc7a3db
7
- data.tar.gz: 3c1333068a6277f75a1e63ee49a8544e6eca83c7d52e7e2280dd06f15178fb831c2c570c98ba0cfca885ea27a6a7b98428ce45a61b6dc1ced5126daf067b03d9
6
+ metadata.gz: 49f86dfd94aa0b43906070c8d7c1f5712fd714dbe63e4ea460e3a96f982c55e774c13a524691e0f3dc4c643e6632bcb01297979b6c45798d9926dd3c5db0675f
7
+ data.tar.gz: e1663c298cd9a00828037370fbbaa6e32fe30912d71545ebe41e15d316340d3e4afd264da3eb3710ff100d316f3a93f9e4f5f60b7e74ed1dea1f740716249c99
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### v3.9.3 - 2014/02/05
2
+
3
+ * Batch Process Type Lookup
4
+ * Fixed .id_by_text function (was not compatible with lookup-as-frame view)
5
+ * Added .result_by_text function
6
+
1
7
  ### v3.9.2 - 2014/02/03
2
8
 
3
9
  * Watir-Webdriver 0.6.5+ Compatibility
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.9.2'
18
+ VERSION = '3.9.3'
19
19
  end
20
20
  end
@@ -46,7 +46,9 @@ module OLE_QA::Framework::OLELS
46
46
  # Check whether the given text exists in the search results.
47
47
  function(:text_in_results) {|text| b.td(:xpath => "//table/tbody/tr/td[div/span[contains(text(),'#{text}')]]")}
48
48
  # Return the Batch Process Type ID link for a row containing the given text.
49
- function(:id_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td[1]/div/span/a")}
49
+ function(:id_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td/div[starts-with(@id,'result-batchProcessTypeId')]/span/a")}
50
+ # Return the 'return value' link for a row containing the given text.
51
+ function(:return_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td/div/fieldset/div/div/a[contains(text(),'return value')]")}
50
52
  end
51
53
  end
52
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ole-qa-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.2
4
+ version: 3.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jain Waldrip
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-03 00:00:00.000000000 Z
11
+ date: 2014-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler