celerity 0.8.0 → 0.8.1
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/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/celerity.gemspec +6 -6
- data/lib/celerity/browser.rb +22 -5
- data/lib/celerity/collections.rb +8 -0
- data/lib/celerity/container.rb +33 -0
- data/lib/celerity/element.rb +2 -0
- data/lib/celerity/element_locator.rb +7 -2
- data/lib/celerity/elements/non_control_elements.rb +8 -0
- data/lib/celerity/elements/select_list.rb +2 -3
- data/lib/celerity/elements/table.rb +0 -5
- data/lib/celerity/htmlunit.rb +1 -1
- data/lib/celerity/htmlunit/commons-lang-2.5.jar +0 -0
- data/lib/celerity/htmlunit/{htmlunit-2.8.jar → htmlunit-2.9-SNAPSHOT.jar} +0 -0
- data/lib/celerity/util.rb +3 -1
- data/lib/celerity/version.rb +1 -1
- data/tasks/snapshot.rake +1 -1
- metadata +154 -148
- data/lib/celerity/htmlunit/commons-lang-2.4.jar +0 -0
data/Rakefile
CHANGED
data/VERSION.yml
CHANGED
data/celerity.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{celerity}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jari Bakken", "T. Alexander Lystad", "Knut Johannes Dahle"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-09-01}
|
|
13
13
|
s.description = %q{Celerity is a JRuby wrapper around HtmlUnit – a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity provides a superset of Watir's API.}
|
|
14
14
|
s.email = %q{jari.bakken@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -56,10 +56,10 @@ Gem::Specification.new do |s|
|
|
|
56
56
|
"lib/celerity/htmlunit/commons-codec-1.4.jar",
|
|
57
57
|
"lib/celerity/htmlunit/commons-collections-3.2.1.jar",
|
|
58
58
|
"lib/celerity/htmlunit/commons-io-1.4.jar",
|
|
59
|
-
"lib/celerity/htmlunit/commons-lang-2.
|
|
59
|
+
"lib/celerity/htmlunit/commons-lang-2.5.jar",
|
|
60
60
|
"lib/celerity/htmlunit/commons-logging-1.1.1.jar",
|
|
61
61
|
"lib/celerity/htmlunit/cssparser-0.9.5.jar",
|
|
62
|
-
"lib/celerity/htmlunit/htmlunit-2.
|
|
62
|
+
"lib/celerity/htmlunit/htmlunit-2.9-SNAPSHOT.jar",
|
|
63
63
|
"lib/celerity/htmlunit/htmlunit-core-js-2.8.jar",
|
|
64
64
|
"lib/celerity/htmlunit/httpclient-4.0.1.jar",
|
|
65
65
|
"lib/celerity/htmlunit/httpcore-4.0.1.jar",
|
|
@@ -98,14 +98,14 @@ Gem::Specification.new do |s|
|
|
|
98
98
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
99
99
|
s.require_paths = ["lib"]
|
|
100
100
|
s.rubyforge_project = %q{celerity}
|
|
101
|
-
s.rubygems_version = %q{1.3.
|
|
101
|
+
s.rubygems_version = %q{1.3.7}
|
|
102
102
|
s.summary = %q{Celerity is a JRuby library for easy and fast functional test automation for web applications.}
|
|
103
103
|
|
|
104
104
|
if s.respond_to? :specification_version then
|
|
105
105
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
106
106
|
s.specification_version = 3
|
|
107
107
|
|
|
108
|
-
if Gem::Version.new(Gem::
|
|
108
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
109
109
|
s.add_development_dependency(%q<rspec>, [">= 0"])
|
|
110
110
|
s.add_development_dependency(%q<yard>, [">= 0"])
|
|
111
111
|
s.add_development_dependency(%q<sinatra>, [">= 1.0"])
|
data/lib/celerity/browser.rb
CHANGED
|
@@ -135,7 +135,7 @@ module Celerity
|
|
|
135
135
|
|
|
136
136
|
def url
|
|
137
137
|
assert_exists
|
|
138
|
-
@page.getWebResponse.
|
|
138
|
+
@page.getWebResponse.getWebRequest.getUrl.toString
|
|
139
139
|
end
|
|
140
140
|
|
|
141
141
|
#
|
|
@@ -306,6 +306,18 @@ module Celerity
|
|
|
306
306
|
def clear_cache
|
|
307
307
|
@webclient.cache.clear
|
|
308
308
|
end
|
|
309
|
+
|
|
310
|
+
#
|
|
311
|
+
# Set the maximum number of files to cache.
|
|
312
|
+
#
|
|
313
|
+
|
|
314
|
+
def cache_limit=(size)
|
|
315
|
+
@webclient.cache.setMaxSize(size)
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
def cache_limit
|
|
319
|
+
@webclient.cache.getMaxSize
|
|
320
|
+
end
|
|
309
321
|
|
|
310
322
|
#
|
|
311
323
|
# Get the cookies for this session. (Celerity only)
|
|
@@ -814,11 +826,15 @@ module Celerity
|
|
|
814
826
|
browser = (opts.delete(:browser) || :firefox3).to_sym
|
|
815
827
|
|
|
816
828
|
browser_version = case browser
|
|
817
|
-
when :firefox, :ff, :
|
|
818
|
-
::HtmlUnit::BrowserVersion::
|
|
819
|
-
when :
|
|
829
|
+
when :firefox, :ff, :firefox3, :ff3 # default :firefox
|
|
830
|
+
::HtmlUnit::BrowserVersion::FIREFOX_3
|
|
831
|
+
when :firefox_3_6, :ff36
|
|
820
832
|
::HtmlUnit::BrowserVersion::FIREFOX_3
|
|
821
|
-
when :
|
|
833
|
+
when :internet_explorer_6, :ie6
|
|
834
|
+
::HtmlUnit::BrowserVersion::INTERNET_EXPLORER_6
|
|
835
|
+
when :internet_explorer, :ie, :internet_explorer7, :ie7 # default :ie
|
|
836
|
+
::HtmlUnit::BrowserVersion::INTERNET_EXPLORER_7
|
|
837
|
+
when :internet_explorer_8, :ie8
|
|
822
838
|
::HtmlUnit::BrowserVersion::INTERNET_EXPLORER_7
|
|
823
839
|
else
|
|
824
840
|
raise ArgumentError, "unknown browser: #{browser.inspect}"
|
|
@@ -842,6 +858,7 @@ module Celerity
|
|
|
842
858
|
self.secure_ssl = opts.delete(:secure_ssl) != false
|
|
843
859
|
self.ignore_pattern = opts.delete(:ignore_pattern) if opts[:ignore_pattern]
|
|
844
860
|
self.refresh_handler = opts.delete(:refresh_handler) if opts[:refresh_handler]
|
|
861
|
+
self.cache_limit = opts.delete(:cache_limit) if opts[:cache_limit]
|
|
845
862
|
|
|
846
863
|
if opts.delete(:resynchronize)
|
|
847
864
|
controller = ::HtmlUnit::NicelyResynchronizingAjaxController.new
|
data/lib/celerity/collections.rb
CHANGED
|
@@ -152,5 +152,13 @@ module Celerity
|
|
|
152
152
|
class H6s < ElementCollection
|
|
153
153
|
def element_class; H6; end
|
|
154
154
|
end
|
|
155
|
+
|
|
156
|
+
class Inses < ElementCollection
|
|
157
|
+
def element_class; Ins; end
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
class Dels < ElementCollection
|
|
161
|
+
def element_class; Del; end
|
|
162
|
+
end
|
|
155
163
|
|
|
156
164
|
end
|
data/lib/celerity/container.rb
CHANGED
|
@@ -169,6 +169,22 @@ module Celerity
|
|
|
169
169
|
Dds.new(self)
|
|
170
170
|
end
|
|
171
171
|
|
|
172
|
+
#
|
|
173
|
+
# @return [Celerity::Del]
|
|
174
|
+
#
|
|
175
|
+
|
|
176
|
+
def del(*args)
|
|
177
|
+
Del.new(self, *args)
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
#
|
|
181
|
+
# @return [Celerity::Dels]
|
|
182
|
+
#
|
|
183
|
+
|
|
184
|
+
def dels
|
|
185
|
+
Dels.new(self)
|
|
186
|
+
end
|
|
187
|
+
|
|
172
188
|
#
|
|
173
189
|
# @return [Celerity::Div]
|
|
174
190
|
#
|
|
@@ -393,6 +409,23 @@ module Celerity
|
|
|
393
409
|
Hiddens.new(self)
|
|
394
410
|
end
|
|
395
411
|
|
|
412
|
+
#
|
|
413
|
+
# @return [Celerity::Ins]
|
|
414
|
+
#
|
|
415
|
+
|
|
416
|
+
def ins(*args)
|
|
417
|
+
Ins.new(self, *args)
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
#
|
|
421
|
+
# @return [Celerity::Inses]
|
|
422
|
+
#
|
|
423
|
+
|
|
424
|
+
def inses(*args)
|
|
425
|
+
Inses.new(self, *args)
|
|
426
|
+
end
|
|
427
|
+
|
|
428
|
+
|
|
396
429
|
#
|
|
397
430
|
# @return [Celerity::Image]
|
|
398
431
|
#
|
data/lib/celerity/element.rb
CHANGED
|
@@ -94,7 +94,12 @@ module Celerity
|
|
|
94
94
|
|
|
95
95
|
def find_by_xpath(what)
|
|
96
96
|
what = ".#{what}" if what[0].chr == "/"
|
|
97
|
-
@object.getByXPath(what).to_a.first
|
|
97
|
+
object = @object.getByXPath(what).to_a.first || return
|
|
98
|
+
|
|
99
|
+
return unless @idents.any? { |id| id.match?(object) }
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
object
|
|
98
103
|
end
|
|
99
104
|
|
|
100
105
|
def find_by_label(what)
|
|
@@ -139,7 +144,7 @@ module Celerity
|
|
|
139
144
|
Please report this failure and the code/HTML that caused it at http://github.com/jarib/celerity/issues}
|
|
140
145
|
end
|
|
141
146
|
|
|
142
|
-
@object.
|
|
147
|
+
@object.getHtmlElementDescendants
|
|
143
148
|
end
|
|
144
149
|
|
|
145
150
|
# HtmlUnit throws NPEs sometimes when we're locating elements
|
|
@@ -37,6 +37,10 @@ module Celerity
|
|
|
37
37
|
TAGS = [ Identifier.new('dd')]
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
+
class Del < NonControlElement
|
|
41
|
+
TAGS = [ Identifier.new('del')]
|
|
42
|
+
end
|
|
43
|
+
|
|
40
44
|
class Div < NonControlElement
|
|
41
45
|
TAGS = [ Identifier.new('div')]
|
|
42
46
|
end
|
|
@@ -76,6 +80,10 @@ module Celerity
|
|
|
76
80
|
class H6 < NonControlElement
|
|
77
81
|
TAGS = [ Identifier.new('h6') ]
|
|
78
82
|
end
|
|
83
|
+
|
|
84
|
+
class Ins < NonControlElement
|
|
85
|
+
TAGS = [ Identifier.new('ins') ]
|
|
86
|
+
end
|
|
79
87
|
|
|
80
88
|
class Li < NonControlElement
|
|
81
89
|
TAGS = [ Identifier.new('li') ]
|
|
@@ -26,8 +26,7 @@ module Celerity
|
|
|
26
26
|
#
|
|
27
27
|
|
|
28
28
|
def clear
|
|
29
|
-
|
|
30
|
-
@object.getSelectedOptions.each { |e| e.setSelected(false) } unless type() == 'select-one'
|
|
29
|
+
@object.getSelectedOptions.each { |e| e.setSelected(false) } if multiple?
|
|
31
30
|
end
|
|
32
31
|
|
|
33
32
|
#
|
|
@@ -144,4 +143,4 @@ module Celerity
|
|
|
144
143
|
end
|
|
145
144
|
|
|
146
145
|
end # SelectList
|
|
147
|
-
end # Celerity
|
|
146
|
+
end # Celerity
|
data/lib/celerity/htmlunit.rb
CHANGED
|
@@ -45,7 +45,7 @@ end unless Java::JavaLang::Iterable < Enumerable # depends on JRuby version
|
|
|
45
45
|
|
|
46
46
|
class Java::ComGargoylesoftwareHtmlunitHtml::HtmlPage
|
|
47
47
|
def inspect
|
|
48
|
-
'#<HtmlPage:0x%s(%s)>' % [self.hash.to_s(16), getWebResponse.
|
|
48
|
+
'#<HtmlPage:0x%s(%s)>' % [self.hash.to_s(16), getWebResponse.getWebRequest.getUrl.toString]
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
|
|
Binary file
|
|
Binary file
|
data/lib/celerity/util.rb
CHANGED
|
@@ -15,6 +15,7 @@ module Celerity
|
|
|
15
15
|
HtmlUnit::Html::HtmlDefinitionDescription => Celerity::Dd,
|
|
16
16
|
HtmlUnit::Html::HtmlDefinitionList => Celerity::Dl,
|
|
17
17
|
HtmlUnit::Html::HtmlDefinitionTerm => Celerity::Dt,
|
|
18
|
+
HtmlUnit::Html::HtmlDeletedText => Celerity::Del,
|
|
18
19
|
HtmlUnit::Html::HtmlDivision => Celerity::Div,
|
|
19
20
|
HtmlUnit::Html::HtmlFileInput => Celerity::FileField,
|
|
20
21
|
HtmlUnit::Html::HtmlForm => Celerity::Form,
|
|
@@ -47,7 +48,8 @@ module Celerity
|
|
|
47
48
|
HtmlUnit::Html::HtmlTableRow => Celerity::TableRow,
|
|
48
49
|
HtmlUnit::Html::HtmlTextArea => Celerity::TextField,
|
|
49
50
|
HtmlUnit::Html::HtmlTextInput => Celerity::TextField,
|
|
50
|
-
HtmlUnit::Html::HtmlUnorderedList => Celerity::Ul
|
|
51
|
+
HtmlUnit::Html::HtmlUnorderedList => Celerity::Ul,
|
|
52
|
+
HtmlUnit::Html::HtmlInsertedText => Celerity::Ins
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
def htmlunit2celerity(klass)
|
data/lib/celerity/version.rb
CHANGED
data/tasks/snapshot.rake
CHANGED
|
@@ -4,7 +4,7 @@ task :snapshot, :file do |t, args|
|
|
|
4
4
|
sh "cp #{args.file} ./"
|
|
5
5
|
basename = File.basename(args.file)
|
|
6
6
|
else
|
|
7
|
-
url = "http://build.canoo.com/htmlunit/artifacts/htmlunit-2.
|
|
7
|
+
url = "http://build.canoo.com/htmlunit/artifacts/htmlunit-2.9-SNAPSHOT-with-dependencies.zip"
|
|
8
8
|
sh "curl -O #{url}"
|
|
9
9
|
basename = File.basename(url)
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -3,71 +3,75 @@ name: celerity
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
version: 0.8.
|
|
6
|
+
- 0
|
|
7
|
+
- 8
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.8.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
- Jari Bakken
|
|
13
|
+
- T. Alexander Lystad
|
|
14
|
+
- Knut Johannes Dahle
|
|
15
15
|
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-
|
|
19
|
+
date: 2010-09-01 00:00:00 +02:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
22
|
+
- !ruby/object:Gem::Dependency
|
|
23
|
+
name: rspec
|
|
24
|
+
prerelease: false
|
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ">="
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: yard
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
segments:
|
|
44
|
+
- 0
|
|
45
|
+
version: "0"
|
|
46
|
+
type: :development
|
|
47
|
+
version_requirements: *id002
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: sinatra
|
|
50
|
+
prerelease: false
|
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
segments:
|
|
57
|
+
- 1
|
|
58
|
+
- 0
|
|
59
|
+
version: "1.0"
|
|
60
|
+
type: :development
|
|
61
|
+
version_requirements: *id003
|
|
62
|
+
- !ruby/object:Gem::Dependency
|
|
63
|
+
name: mongrel
|
|
64
|
+
prerelease: false
|
|
65
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
66
|
+
none: false
|
|
67
|
+
requirements:
|
|
68
|
+
- - ">="
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
segments:
|
|
71
|
+
- 0
|
|
72
|
+
version: "0"
|
|
73
|
+
type: :development
|
|
74
|
+
version_requirements: *id004
|
|
71
75
|
description: "Celerity is a JRuby wrapper around HtmlUnit \xE2\x80\x93 a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity provides a superset of Watir's API."
|
|
72
76
|
email: jari.bakken@gmail.com
|
|
73
77
|
executables: []
|
|
@@ -75,112 +79,114 @@ executables: []
|
|
|
75
79
|
extensions: []
|
|
76
80
|
|
|
77
81
|
extra_rdoc_files:
|
|
78
|
-
|
|
79
|
-
|
|
82
|
+
- LICENSE
|
|
83
|
+
- README.rdoc
|
|
80
84
|
files:
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
85
|
+
- HISTORY
|
|
86
|
+
- LICENSE
|
|
87
|
+
- README.rdoc
|
|
88
|
+
- Rakefile
|
|
89
|
+
- VERSION.yml
|
|
90
|
+
- celerity.gemspec
|
|
91
|
+
- lib/celerity.rb
|
|
92
|
+
- lib/celerity/browser.rb
|
|
93
|
+
- lib/celerity/clickable_element.rb
|
|
94
|
+
- lib/celerity/collections.rb
|
|
95
|
+
- lib/celerity/container.rb
|
|
96
|
+
- lib/celerity/default_viewer.rb
|
|
97
|
+
- lib/celerity/disabled_element.rb
|
|
98
|
+
- lib/celerity/element.rb
|
|
99
|
+
- lib/celerity/element_collection.rb
|
|
100
|
+
- lib/celerity/element_locator.rb
|
|
101
|
+
- lib/celerity/elements/button.rb
|
|
102
|
+
- lib/celerity/elements/file_field.rb
|
|
103
|
+
- lib/celerity/elements/form.rb
|
|
104
|
+
- lib/celerity/elements/frame.rb
|
|
105
|
+
- lib/celerity/elements/image.rb
|
|
106
|
+
- lib/celerity/elements/label.rb
|
|
107
|
+
- lib/celerity/elements/link.rb
|
|
108
|
+
- lib/celerity/elements/meta.rb
|
|
109
|
+
- lib/celerity/elements/non_control_elements.rb
|
|
110
|
+
- lib/celerity/elements/option.rb
|
|
111
|
+
- lib/celerity/elements/radio_check.rb
|
|
112
|
+
- lib/celerity/elements/select_list.rb
|
|
113
|
+
- lib/celerity/elements/table.rb
|
|
114
|
+
- lib/celerity/elements/table_cell.rb
|
|
115
|
+
- lib/celerity/elements/table_elements.rb
|
|
116
|
+
- lib/celerity/elements/table_row.rb
|
|
117
|
+
- lib/celerity/elements/text_field.rb
|
|
118
|
+
- lib/celerity/exception.rb
|
|
119
|
+
- lib/celerity/htmlunit.rb
|
|
120
|
+
- lib/celerity/htmlunit/apache-mime4j-0.6.jar
|
|
121
|
+
- lib/celerity/htmlunit/commons-codec-1.4.jar
|
|
122
|
+
- lib/celerity/htmlunit/commons-collections-3.2.1.jar
|
|
123
|
+
- lib/celerity/htmlunit/commons-io-1.4.jar
|
|
124
|
+
- lib/celerity/htmlunit/commons-lang-2.5.jar
|
|
125
|
+
- lib/celerity/htmlunit/commons-logging-1.1.1.jar
|
|
126
|
+
- lib/celerity/htmlunit/cssparser-0.9.5.jar
|
|
127
|
+
- lib/celerity/htmlunit/htmlunit-2.9-SNAPSHOT.jar
|
|
128
|
+
- lib/celerity/htmlunit/htmlunit-core-js-2.8.jar
|
|
129
|
+
- lib/celerity/htmlunit/httpclient-4.0.1.jar
|
|
130
|
+
- lib/celerity/htmlunit/httpcore-4.0.1.jar
|
|
131
|
+
- lib/celerity/htmlunit/httpmime-4.0.1.jar
|
|
132
|
+
- lib/celerity/htmlunit/nekohtml-1.9.14.jar
|
|
133
|
+
- lib/celerity/htmlunit/sac-1.3.jar
|
|
134
|
+
- lib/celerity/htmlunit/serializer-2.7.1.jar
|
|
135
|
+
- lib/celerity/htmlunit/xalan-2.7.1.jar
|
|
136
|
+
- lib/celerity/htmlunit/xercesImpl-2.9.1.jar
|
|
137
|
+
- lib/celerity/htmlunit/xml-apis-1.3.04.jar
|
|
138
|
+
- lib/celerity/identifier.rb
|
|
139
|
+
- lib/celerity/ignoring_web_connection.rb
|
|
140
|
+
- lib/celerity/input_element.rb
|
|
141
|
+
- lib/celerity/javascript_debugger.rb
|
|
142
|
+
- lib/celerity/listener.rb
|
|
143
|
+
- lib/celerity/resources/no_viewer.png
|
|
144
|
+
- lib/celerity/short_inspect.rb
|
|
145
|
+
- lib/celerity/util.rb
|
|
146
|
+
- lib/celerity/version.rb
|
|
147
|
+
- lib/celerity/viewer_connection.rb
|
|
148
|
+
- lib/celerity/watir_compatibility.rb
|
|
149
|
+
- lib/celerity/xpath_support.rb
|
|
150
|
+
- tasks/benchmark.rake
|
|
151
|
+
- tasks/check.rake
|
|
152
|
+
- tasks/clean.rake
|
|
153
|
+
- tasks/fix.rake
|
|
154
|
+
- tasks/jar.rake
|
|
155
|
+
- tasks/jeweler.rake
|
|
156
|
+
- tasks/rdoc.rake
|
|
157
|
+
- tasks/snapshot.rake
|
|
158
|
+
- tasks/spec.rake
|
|
159
|
+
- tasks/website.rake
|
|
160
|
+
- tasks/yard.rake
|
|
157
161
|
has_rdoc: true
|
|
158
162
|
homepage: http://github.com/jarib/celerity
|
|
159
163
|
licenses: []
|
|
160
164
|
|
|
161
165
|
post_install_message:
|
|
162
166
|
rdoc_options:
|
|
163
|
-
|
|
167
|
+
- --charset=UTF-8
|
|
164
168
|
require_paths:
|
|
165
|
-
|
|
169
|
+
- lib
|
|
166
170
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
171
|
+
none: false
|
|
167
172
|
requirements:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
+
- - ">="
|
|
174
|
+
- !ruby/object:Gem::Version
|
|
175
|
+
segments:
|
|
176
|
+
- 0
|
|
177
|
+
version: "0"
|
|
173
178
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
|
+
none: false
|
|
174
180
|
requirements:
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
181
|
+
- - ">="
|
|
182
|
+
- !ruby/object:Gem::Version
|
|
183
|
+
segments:
|
|
184
|
+
- 0
|
|
185
|
+
version: "0"
|
|
180
186
|
requirements: []
|
|
181
187
|
|
|
182
188
|
rubyforge_project: celerity
|
|
183
|
-
rubygems_version: 1.3.
|
|
189
|
+
rubygems_version: 1.3.7
|
|
184
190
|
signing_key:
|
|
185
191
|
specification_version: 3
|
|
186
192
|
summary: Celerity is a JRuby library for easy and fast functional test automation for web applications.
|
|
Binary file
|