awetestlib 0.0.3-x86-mingw32 → 0.1.0-x86-mingw32
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.
- data/.gitattributes +22 -0
- data/.gitignore +2 -3
- data/AwetestLib Instructions.rtf +0 -0
- data/ext/Rakefile +1 -0
- data/lib/regression/browser.rb +1259 -0
- data/lib/regression/drag_and_drop.rb +374 -0
- data/lib/regression/find.rb +426 -0
- data/lib/regression/legacy.rb +10 -4693
- data/lib/regression/page_data.rb +185 -0
- data/lib/regression/runner.rb +16 -2
- data/lib/regression/tables.rb +486 -0
- data/lib/regression/user_input.rb +1255 -0
- data/lib/regression/utilities.rb +891 -0
- data/lib/regression/validations.rb +179 -508
- data/lib/regression/waits.rb +387 -0
- data/lib/version.rb +2 -2
- data/rdoc_test.bat +1 -0
- data/test/create_zoho.rb +65 -0
- data/{create_zoho_account1.rb → test/create_zoho_account1.rb} +0 -0
- data/{create_zoho_account2.rb → test/create_zoho_account2.rb} +2 -1
- data/{demo.rb → test/demo.rb} +0 -0
- data/{google_search1.rb → test/google_search1.rb} +0 -0
- data/{google_search2.rb → test/google_search2.rb} +0 -0
- data/{zoho_util.rb → test/zoho_util.rb} +0 -0
- data/{zoho_variables.xls → test/zoho_variables.xls} +0 -0
- metadata +27 -12
File without changes
|
@@ -62,7 +62,8 @@ module CreateZohoAccount2
|
|
62
62
|
set_textfield_by_name(popup, 'fldValue', @var['parent_account_pattern'])
|
63
63
|
click_button_by_value(popup, 'Go')
|
64
64
|
click(popup, :link, :text, @var['parent_account'])
|
65
|
-
# TODO: This next line is currently required for Firefox and Chrome to return to original browser window
|
65
|
+
# TODO: This next line is currently required for Firefox and Chrome to return to original browser window
|
66
|
+
browser = attach_browser_by_url(browser, /ShowHomePage/)
|
66
67
|
validate_textfield_value_by_name(browser, /Parent Account/, @var['parent_account'], "*** cza002 ***")
|
67
68
|
end
|
68
69
|
end
|
data/{demo.rb → test/demo.rb}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: awetestlib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 0.0.3
|
10
|
+
version: 0.1.0
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Anthony Woo
|
@@ -16,7 +16,8 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-
|
19
|
+
date: 2012-08-14 00:00:00 -07:00
|
20
|
+
default_executable:
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
23
|
name: watir-webdriver
|
@@ -266,29 +267,43 @@ extensions: []
|
|
266
267
|
extra_rdoc_files: []
|
267
268
|
|
268
269
|
files:
|
270
|
+
- .gitattributes
|
269
271
|
- .gitignore
|
272
|
+
- AwetestLib Instructions.rtf
|
270
273
|
- awetestlib.gemspec
|
271
274
|
- awetestlib.windows.gemspec
|
272
275
|
- awetestlib_notes.txt
|
273
276
|
- awetestlib_osx.gemspec
|
274
277
|
- bin/awetestlib
|
275
|
-
-
|
276
|
-
- create_zoho_account2.rb
|
277
|
-
- demo.rb
|
278
|
+
- ext/Rakefile
|
278
279
|
- ext/mkrf_conf.rb
|
279
|
-
- google_search1.rb
|
280
|
-
- google_search2.rb
|
281
280
|
- lib/awetestlib.rb
|
282
281
|
- lib/patches/README
|
283
282
|
- lib/patches/firewatir.rb
|
284
283
|
- lib/patches/watir.rb
|
284
|
+
- lib/regression/browser.rb
|
285
|
+
- lib/regression/drag_and_drop.rb
|
286
|
+
- lib/regression/find.rb
|
285
287
|
- lib/regression/legacy.rb
|
286
288
|
- lib/regression/logging.rb
|
289
|
+
- lib/regression/page_data.rb
|
287
290
|
- lib/regression/runner.rb
|
291
|
+
- lib/regression/tables.rb
|
292
|
+
- lib/regression/user_input.rb
|
293
|
+
- lib/regression/utilities.rb
|
288
294
|
- lib/regression/validations.rb
|
295
|
+
- lib/regression/waits.rb
|
289
296
|
- lib/version.rb
|
290
|
-
-
|
291
|
-
-
|
297
|
+
- rdoc_test.bat
|
298
|
+
- test/create_zoho.rb
|
299
|
+
- test/create_zoho_account1.rb
|
300
|
+
- test/create_zoho_account2.rb
|
301
|
+
- test/demo.rb
|
302
|
+
- test/google_search1.rb
|
303
|
+
- test/google_search2.rb
|
304
|
+
- test/zoho_util.rb
|
305
|
+
- test/zoho_variables.xls
|
306
|
+
has_rdoc: true
|
292
307
|
homepage: http://3qilabs.com
|
293
308
|
licenses: []
|
294
309
|
|
@@ -318,7 +333,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
318
333
|
requirements: []
|
319
334
|
|
320
335
|
rubyforge_project:
|
321
|
-
rubygems_version: 1.
|
336
|
+
rubygems_version: 1.5.2
|
322
337
|
signing_key:
|
323
338
|
specification_version: 3
|
324
339
|
summary: Awetest DSL for automated testing of browser-based applications.
|