celerity_thingista 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +9 -0
- data/.gitmodules +3 -0
- data/.travis.yml +4 -0
- data/Gemfile +3 -0
- data/LICENSE +278 -0
- data/README.rdoc +84 -0
- data/Rakefile +15 -0
- data/benchmark/bm_2000_spans.rb +48 -0
- data/benchmark/bm_digg.rb +26 -0
- data/benchmark/bm_google_images.rb +36 -0
- data/benchmark/bm_input_locator.rb +69 -0
- data/benchmark/bm_text_input.rb +19 -0
- data/benchmark/loader.rb +14 -0
- data/celerity.gemspec +26 -0
- data/lib/celerity.rb +75 -0
- data/lib/celerity/browser.rb +924 -0
- data/lib/celerity/clickable_element.rb +73 -0
- data/lib/celerity/collections.rb +164 -0
- data/lib/celerity/container.rb +802 -0
- data/lib/celerity/default_viewer.rb +14 -0
- data/lib/celerity/disabled_element.rb +40 -0
- data/lib/celerity/element.rb +314 -0
- data/lib/celerity/element_collection.rb +115 -0
- data/lib/celerity/element_locator.rb +164 -0
- data/lib/celerity/elements/button.rb +54 -0
- data/lib/celerity/elements/file_field.rb +29 -0
- data/lib/celerity/elements/form.rb +22 -0
- data/lib/celerity/elements/frame.rb +86 -0
- data/lib/celerity/elements/image.rb +89 -0
- data/lib/celerity/elements/label.rb +16 -0
- data/lib/celerity/elements/link.rb +43 -0
- data/lib/celerity/elements/meta.rb +14 -0
- data/lib/celerity/elements/non_control_elements.rb +124 -0
- data/lib/celerity/elements/option.rb +38 -0
- data/lib/celerity/elements/radio_check.rb +114 -0
- data/lib/celerity/elements/select_list.rb +146 -0
- data/lib/celerity/elements/table.rb +154 -0
- data/lib/celerity/elements/table_cell.rb +36 -0
- data/lib/celerity/elements/table_elements.rb +42 -0
- data/lib/celerity/elements/table_row.rb +54 -0
- data/lib/celerity/elements/text_field.rb +168 -0
- data/lib/celerity/exception.rb +83 -0
- data/lib/celerity/htmlunit.rb +64 -0
- data/lib/celerity/htmlunit/commons-codec-1.7.jar +0 -0
- data/lib/celerity/htmlunit/commons-collections-3.2.1.jar +0 -0
- data/lib/celerity/htmlunit/commons-io-2.4.jar +0 -0
- data/lib/celerity/htmlunit/commons-lang3-3.1.jar +0 -0
- data/lib/celerity/htmlunit/commons-logging-1.1.1.jar +0 -0
- data/lib/celerity/htmlunit/cssparser-0.9.9.jar +0 -0
- data/lib/celerity/htmlunit/htmlunit-2.12.jar +0 -0
- data/lib/celerity/htmlunit/htmlunit-core-js-2.12.jar +0 -0
- data/lib/celerity/htmlunit/httpclient-4.2.3.jar +0 -0
- data/lib/celerity/htmlunit/httpcore-4.2.2.jar +0 -0
- data/lib/celerity/htmlunit/httpmime-4.2.3.jar +0 -0
- data/lib/celerity/htmlunit/jetty-http-8.1.9.v20130131.jar +0 -0
- data/lib/celerity/htmlunit/jetty-io-8.1.9.v20130131.jar +0 -0
- data/lib/celerity/htmlunit/jetty-util-8.1.9.v20130131.jar +0 -0
- data/lib/celerity/htmlunit/jetty-websocket-8.1.9.v20130131.jar +0 -0
- data/lib/celerity/htmlunit/nekohtml-1.9.18.jar +0 -0
- data/lib/celerity/htmlunit/sac-1.3.jar +0 -0
- data/lib/celerity/htmlunit/serializer-2.7.1.jar +0 -0
- data/lib/celerity/htmlunit/xalan-2.7.1.jar +0 -0
- data/lib/celerity/htmlunit/xercesImpl-2.10.0.jar +0 -0
- data/lib/celerity/htmlunit/xml-apis-1.4.01.jar +0 -0
- data/lib/celerity/identifier.rb +28 -0
- data/lib/celerity/ignoring_web_connection.rb +15 -0
- data/lib/celerity/input_element.rb +25 -0
- data/lib/celerity/javascript_debugger.rb +32 -0
- data/lib/celerity/listener.rb +143 -0
- data/lib/celerity/resources/no_viewer.png +0 -0
- data/lib/celerity/short_inspect.rb +29 -0
- data/lib/celerity/util.rb +129 -0
- data/lib/celerity/version.rb +3 -0
- data/lib/celerity/viewer_connection.rb +89 -0
- data/lib/celerity/watir_compatibility.rb +70 -0
- data/lib/celerity/xpath_support.rb +50 -0
- data/spec/browser_authentication_spec.rb +16 -0
- data/spec/browser_spec.rb +439 -0
- data/spec/button_spec.rb +24 -0
- data/spec/clickable_element_spec.rb +39 -0
- data/spec/default_viewer_spec.rb +23 -0
- data/spec/element_spec.rb +77 -0
- data/spec/filefield_spec.rb +18 -0
- data/spec/htmlunit_spec.rb +63 -0
- data/spec/implementation.rb +7 -0
- data/spec/index_offset_spec.rb +24 -0
- data/spec/link_spec.rb +16 -0
- data/spec/listener_spec.rb +142 -0
- data/spec/spec_helper.rb +6 -0
- data/spec/table_spec.rb +41 -0
- data/spec/watir_compatibility_spec.rb +32 -0
- data/tasks/benchmark.rake +4 -0
- data/tasks/check.rake +24 -0
- data/tasks/clean.rake +3 -0
- data/tasks/fix.rake +25 -0
- data/tasks/jar.rake +55 -0
- data/tasks/rdoc.rake +4 -0
- data/tasks/snapshot.rake +25 -0
- data/tasks/spec.rake +27 -0
- data/tasks/website.rake +10 -0
- data/tasks/yard.rake +16 -0
- data/website/benchmarks.html +237 -0
- data/website/css/color.css +153 -0
- data/website/css/hacks.css +3 -0
- data/website/css/layout.css +179 -0
- data/website/css/screen.css +5 -0
- data/website/css/textmate.css +226 -0
- data/website/css/typography.css +72 -0
- data/website/gfx/body_bg.gif +0 -0
- data/website/gfx/button_bg.jpg +0 -0
- data/website/gfx/header_bg.jpg +0 -0
- data/website/gfx/header_left.jpg +0 -0
- data/website/gfx/header_right.jpg +0 -0
- data/website/gfx/nav_bg.jpg +0 -0
- data/website/index.html +125 -0
- data/website/yard/index.html +1 -0
- metadata +246 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
body {
|
2
|
+
font-family: "verdana";
|
3
|
+
}
|
4
|
+
|
5
|
+
p {
|
6
|
+
margin-bottom: 1.5em;
|
7
|
+
line-height: 1.4em;
|
8
|
+
}
|
9
|
+
|
10
|
+
q {
|
11
|
+
font-style: italic;
|
12
|
+
}
|
13
|
+
|
14
|
+
#content ul, #content table, #content fieldset {
|
15
|
+
margin-bottom: 1.5em;
|
16
|
+
}
|
17
|
+
|
18
|
+
#content ul ul {
|
19
|
+
margin-bottom: 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
ul {
|
23
|
+
line-height: 1.4em;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* ---( headers )-------------------------- */
|
27
|
+
|
28
|
+
h1 {
|
29
|
+
font-size: 1.8em;
|
30
|
+
}
|
31
|
+
|
32
|
+
h2 {
|
33
|
+
font-size: 1.4em;
|
34
|
+
}
|
35
|
+
|
36
|
+
h3 {
|
37
|
+
font-size: 1.1em;
|
38
|
+
}
|
39
|
+
|
40
|
+
h4 {
|
41
|
+
font-size: 0.92em;
|
42
|
+
}
|
43
|
+
|
44
|
+
h5 {
|
45
|
+
font-size: 0.82em;
|
46
|
+
}
|
47
|
+
|
48
|
+
#header {
|
49
|
+
font-family: "trebuchet ms", serif;
|
50
|
+
}
|
51
|
+
|
52
|
+
#header h1 {
|
53
|
+
font-size: 2em;
|
54
|
+
}
|
55
|
+
|
56
|
+
#header #tagline {
|
57
|
+
font-size: 0.7em;
|
58
|
+
}
|
59
|
+
|
60
|
+
#nav {
|
61
|
+
font-size: 0.9em;
|
62
|
+
font-weight: bold;
|
63
|
+
}
|
64
|
+
|
65
|
+
#footer {
|
66
|
+
font-size: 0.75em;
|
67
|
+
}
|
68
|
+
|
69
|
+
#footer .w3cbutton {
|
70
|
+
font-weight: bold;
|
71
|
+
white-space: nowrap;
|
72
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/website/index.html
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
3
|
+
<head>
|
4
|
+
<title>Celerity | Easy and fast functional test automation for web applications</title>
|
5
|
+
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
6
|
+
<link rel="stylesheet" type="text/css" media="screen" href="css/screen.css" />
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
<div id="container">
|
10
|
+
<div id="header">
|
11
|
+
<h1><a href=".">Celerity</a></h1>
|
12
|
+
<div id="tagline">
|
13
|
+
{ French célérité > Latin celeritas > Latin celer, fast, swift. <br />
|
14
|
+
Rapidity of motion; quickness; swiftness. }
|
15
|
+
</div>
|
16
|
+
<div id="leftSlice"></div>
|
17
|
+
<div id="rightSlice"></div>
|
18
|
+
</div>
|
19
|
+
<div id="nav">
|
20
|
+
<ul>
|
21
|
+
<li><a accesskey="h" title="Front page" href="." hreflang="en">Home</a></li>
|
22
|
+
<li><a accesskey="p" title="Celerity at Rubyforge" href="http://rubyforge.org/projects/celerity/" hreflang="en">Rubyforge project</a></li>
|
23
|
+
<li><a accesskey="d" title="Download Celerity" href="http://rubygems.org/gems/celerity" hreflang="en">Download</a></li>
|
24
|
+
<li><a accesskey="o" title="Documentation" href="http://rubydoc.info/gems/celerity/" hreflang="en">Documentation</a></li>
|
25
|
+
<li><a accesskey="f" title="Discuss Celerity" href="http://rubyforge.org/forum/?group_id=6198" hreflang="en">Forum</a></li>
|
26
|
+
<li><a accesskey="m" title="Stay up-to-date" href="http://rubyforge.org/mail/?group_id=6198" hreflang="en">Mailing lists</a></li>
|
27
|
+
<li><a accesskey="s" title="Browse the source code" href="http://github.com/jarib/celerity/tree/master" hreflang="en">Browse source</a></li>
|
28
|
+
<li><a accesskey="b" title="Report and browse bugs" href="http://github.com/jarib/celerity/issues" hreflang="en">Bug tracker</a></li>
|
29
|
+
<li><a accesskey="n" title="Benchmarks" href="benchmarks.html" hreflang="en">Benchmarks</a></li>
|
30
|
+
<li><a accesskey="w" title="Wiki/FAQ" href="http://wiki.github.com/jarib/celerity" hreflang="en">Wiki/FAQ</a></li>
|
31
|
+
<li><a accesskey="t" title="Tutorial" href="http://wiki.github.com/jarib/celerity/getting-started" hreflang="en">Tutorial</a></li>
|
32
|
+
</ul>
|
33
|
+
</div>
|
34
|
+
<div id="content">
|
35
|
+
<a href="http://rubygems.org/gems/celerity" id="download" title="Download Celerity from RubyGems.org">Download →</a>
|
36
|
+
|
37
|
+
<h2>What is Celerity?</h2>
|
38
|
+
<p>Celerity is a <a href="http://jruby.org/">JRuby</a> wrapper around <a href="http://htmlunit.sourceforge.net/">HtmlUnit</a> – a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity aims at being <acronym title="Application Programming Interface">API</acronym> compatible with <a href="http://wtr.rubyforge.org/">Watir</a>.</p>
|
39
|
+
|
40
|
+
<h2>Features</h2>
|
41
|
+
<ul>
|
42
|
+
<li><a accesskey="n" title="Benchmarks" href="benchmarks.html" hreflang="en">Fast</a> - No time-consuming <acronym title="Graphical User Interface">GUI</acronym> rendering or unessential downloads</li>
|
43
|
+
<li>Easy to use - Simple API</li>
|
44
|
+
<li><a href="http://htmlunit.sourceforge.net/javascript.html" title="HtmlUnit's JavaScript engine">JavaScript support</a></li>
|
45
|
+
<li>Scalable - Java threads lets you run tests in parallel</li>
|
46
|
+
<li>Portable - Cross-platform thanks to the JVM</li>
|
47
|
+
<li>Unintrusive - No browser window interrupting your workflow (runs in background)</li>
|
48
|
+
</ul>
|
49
|
+
|
50
|
+
<h2>Requirements</h2>
|
51
|
+
<ul>
|
52
|
+
<li><a href="http://jruby.org">JRuby</a> (<a href="http://jruby.org/download">download</a>) (<a href="http://jruby.org/getting-started">installation</a>)</li>
|
53
|
+
<li><a href="http://java.sun.com/javase/" title="Java SE Development Kit (JDK) 6">Java 6</a> (<a href="http://java.sun.com/javase/downloads/index.jsp">download</a>)</li>
|
54
|
+
</ul>
|
55
|
+
|
56
|
+
<h2>Background</h2>
|
57
|
+
<p><a href="http://www.finn.no/">FINN.no</a> is a top provider of online classifieds in Europe. Consequently automated functional testing is an essential part of our quality assurance effort. As of spring 2008 our Watir test suite, consisting of 340 test cases (which only covers part of our application), completes in 3 hours. Obviously, not optimal for an agile development environment.</p>
|
58
|
+
<p>We need a faster alternative. At the same time, we enjoy working with Ruby and Watir's API. By providing this API on top of HtmlUnit, we hope to significantly speed up test suite execution, while avoiding a rewrite of our existing test suite. <a href="benchmarks.html">Early benchmarks</a> are available.</p>
|
59
|
+
|
60
|
+
<h2>Installing Celerity</h2>
|
61
|
+
<pre>
|
62
|
+
<code>
|
63
|
+
$ jruby -S gem install celerity
|
64
|
+
</code>
|
65
|
+
</pre>
|
66
|
+
<h2>Code example</h2>
|
67
|
+
<pre class="textmate-source mac_classic"><span class="source source_ruby"><span class="meta meta_require meta_require_ruby"><span class="keyword keyword_other keyword_other_special-method keyword_other_special-method_ruby">require</span> <span class="string string_quoted string_quoted_double string_quoted_double_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">"</span>rubygems<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">"</span></span></span>
|
68
|
+
<span class="meta meta_require meta_require_ruby"><span class="keyword keyword_other keyword_other_special-method keyword_other_special-method_ruby">require</span> <span class="string string_quoted string_quoted_double string_quoted_double_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">"</span>celerity<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">"</span></span></span>
|
69
|
+
|
70
|
+
browser <span class="keyword keyword_operator keyword_operator_assignment keyword_operator_assignment_ruby">=</span> <span class="support support_class support_class_ruby">Celerity</span><span class="punctuation punctuation_separator punctuation_separator_other punctuation_separator_other_ruby">::</span><span class="support support_class support_class_ruby">Browser</span><span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span><span class="keyword keyword_other keyword_other_special-method keyword_other_special-method_ruby">new</span>
|
71
|
+
browser<span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>goto<span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">(</span><span class="string string_quoted string_quoted_single string_quoted_single_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">'</span>http://www.google.com<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">'</span></span><span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">)</span>
|
72
|
+
browser<span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>text_field<span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">(</span><span class="constant constant_other constant_other_symbol constant_other_symbol_ruby"><span class="punctuation punctuation_definition punctuation_definition_constant punctuation_definition_constant_ruby">:</span>name</span><span class="punctuation punctuation_separator punctuation_separator_object punctuation_separator_object_ruby">,</span> <span class="string string_quoted string_quoted_single string_quoted_single_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">'</span>q<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">'</span></span><span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">)</span><span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>value <span class="keyword keyword_operator keyword_operator_assignment keyword_operator_assignment_ruby">=</span> <span class="string string_quoted string_quoted_single string_quoted_single_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">'</span>Celerity<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">'</span></span>
|
73
|
+
browser<span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>button<span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">(</span><span class="constant constant_other constant_other_symbol constant_other_symbol_ruby"><span class="punctuation punctuation_definition punctuation_definition_constant punctuation_definition_constant_ruby">:</span>name</span><span class="punctuation punctuation_separator punctuation_separator_object punctuation_separator_object_ruby">,</span> <span class="string string_quoted string_quoted_single string_quoted_single_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">'</span>btnG<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">'</span></span><span class="punctuation punctuation_section punctuation_section_function punctuation_section_function_ruby">)</span><span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>click
|
74
|
+
|
75
|
+
puts <span class="string string_quoted string_quoted_double string_quoted_double_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">"</span>yay<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">"</span></span> <span class="keyword keyword_control keyword_control_ruby">if</span> browser<span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>text<span class="punctuation punctuation_separator punctuation_separator_method punctuation_separator_method_ruby">.</span>include? <span class="string string_quoted string_quoted_single string_quoted_single_ruby"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_begin punctuation_definition_string_begin_ruby">'</span>celerity.rubyforge.org<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_end punctuation_definition_string_end_ruby">'</span></span></span>
|
76
|
+
</pre>
|
77
|
+
|
78
|
+
<p>For more examples and help, check our <a href="http://github.com/jarib/celerity/wikis">wiki</a>.</p>
|
79
|
+
|
80
|
+
<h2>How to submit patches</h2>
|
81
|
+
<p>Read the <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/">8 steps for fixing other people's code</a>. The repository is hosted at <a href="http://github.com/jarib/celerity/tree/master"><code>GitHub</code></a>. Failing specs for issues/features are most welcome!</p>
|
82
|
+
|
83
|
+
<h2>License</h2>
|
84
|
+
<p>Celerity is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.html">GPLv3 license</a>.</p>
|
85
|
+
|
86
|
+
<h2>Contact</h2>
|
87
|
+
<p>Comments are welcome. You can reach us through our <a href="http://rubyforge.org/mail/?group_id=6198">mailing lists</a>, our <a href="http://rubyforge.org/forum/?group_id=6198">forum</a>, or our individual email addresses below.</p>
|
88
|
+
|
89
|
+
<h2>Developers</h2>
|
90
|
+
<ul>
|
91
|
+
<li><a href="mailto:tinius.alexander@lystadonline.no">T. Alexander Lystad</a></li>
|
92
|
+
<li><a href="mailto:knut.johannes.dahle@gmail.com">Knut Johannes Dahle</a></li>
|
93
|
+
<li><a href="mailto:jari.bakken@finn.no">Jari Bakken</a></li>
|
94
|
+
</ul>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
<div id="footer">
|
98
|
+
<p>
|
99
|
+
<span class="w3cbutton">
|
100
|
+
<a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Strict" hreflang="en">
|
101
|
+
<span class="w3c">W3C</span>
|
102
|
+
<span class="spec">XHTML 1.0</span>
|
103
|
+
</a>
|
104
|
+
</span>
|
105
|
+
|
106
|
+
<span class="w3cbutton">
|
107
|
+
<a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS" hreflang="en">
|
108
|
+
<span class="w3c">W3C</span>
|
109
|
+
<span class="spec">CSS</span>
|
110
|
+
</a>
|
111
|
+
</span>
|
112
|
+
<!--
|
113
|
+
<span class="w3cbutton">
|
114
|
+
<a href="http://www.w3.org/WAI/WCAG1AAA-Conformance" title="Conforming with the highest level (AAA) of the Web Content Accessibility Guidelines 1.0" hreflang="en">
|
115
|
+
<span class="w3c">W3C</span>
|
116
|
+
<span class="spec">WAI‑<span class="red">AAA</span> WCAG 1.0</span>
|
117
|
+
</a>
|
118
|
+
</span>-->
|
119
|
+
</p>
|
120
|
+
<address>
|
121
|
+
<a href="mailto:jari.bakken@finn.no">JB</a>, 2009-03-19
|
122
|
+
</address>
|
123
|
+
</div>
|
124
|
+
</body>
|
125
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
See <a href="http://rubydoc.info/gems/celerity">RubyDoc.info</a>.
|
metadata
ADDED
@@ -0,0 +1,246 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: celerity_thingista
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jari Bakken
|
9
|
+
- T. Alexander Lystad
|
10
|
+
- Knut Johannes Dahle
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2013-05-18 00:00:00.000000000 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rake
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ~>
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.9.2
|
24
|
+
type: :development
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ~>
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 0.9.2
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: rspec
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
36
|
+
requirements:
|
37
|
+
- - ~>
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 2.0.0
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.0.0
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: yard
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: sinatra
|
66
|
+
requirement: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ~>
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '1.0'
|
72
|
+
type: :development
|
73
|
+
prerelease: false
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ~>
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '1.0'
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: mongrel
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ! '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
type: :development
|
89
|
+
prerelease: false
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ! '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
description: Celerity is a JRuby wrapper around HtmlUnit – a headless Java browser
|
97
|
+
with JavaScript support. It provides a simple API for programmatic navigation through
|
98
|
+
web applications. Celerity provides a superset of Watir's API.
|
99
|
+
email: jari.bakken@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- .document
|
105
|
+
- .gitignore
|
106
|
+
- .gitmodules
|
107
|
+
- .travis.yml
|
108
|
+
- Gemfile
|
109
|
+
- LICENSE
|
110
|
+
- README.rdoc
|
111
|
+
- Rakefile
|
112
|
+
- benchmark/bm_2000_spans.rb
|
113
|
+
- benchmark/bm_digg.rb
|
114
|
+
- benchmark/bm_google_images.rb
|
115
|
+
- benchmark/bm_input_locator.rb
|
116
|
+
- benchmark/bm_text_input.rb
|
117
|
+
- benchmark/loader.rb
|
118
|
+
- celerity.gemspec
|
119
|
+
- lib/celerity.rb
|
120
|
+
- lib/celerity/browser.rb
|
121
|
+
- lib/celerity/clickable_element.rb
|
122
|
+
- lib/celerity/collections.rb
|
123
|
+
- lib/celerity/container.rb
|
124
|
+
- lib/celerity/default_viewer.rb
|
125
|
+
- lib/celerity/disabled_element.rb
|
126
|
+
- lib/celerity/element.rb
|
127
|
+
- lib/celerity/element_collection.rb
|
128
|
+
- lib/celerity/element_locator.rb
|
129
|
+
- lib/celerity/elements/button.rb
|
130
|
+
- lib/celerity/elements/file_field.rb
|
131
|
+
- lib/celerity/elements/form.rb
|
132
|
+
- lib/celerity/elements/frame.rb
|
133
|
+
- lib/celerity/elements/image.rb
|
134
|
+
- lib/celerity/elements/label.rb
|
135
|
+
- lib/celerity/elements/link.rb
|
136
|
+
- lib/celerity/elements/meta.rb
|
137
|
+
- lib/celerity/elements/non_control_elements.rb
|
138
|
+
- lib/celerity/elements/option.rb
|
139
|
+
- lib/celerity/elements/radio_check.rb
|
140
|
+
- lib/celerity/elements/select_list.rb
|
141
|
+
- lib/celerity/elements/table.rb
|
142
|
+
- lib/celerity/elements/table_cell.rb
|
143
|
+
- lib/celerity/elements/table_elements.rb
|
144
|
+
- lib/celerity/elements/table_row.rb
|
145
|
+
- lib/celerity/elements/text_field.rb
|
146
|
+
- lib/celerity/exception.rb
|
147
|
+
- lib/celerity/htmlunit.rb
|
148
|
+
- lib/celerity/htmlunit/commons-codec-1.7.jar
|
149
|
+
- lib/celerity/htmlunit/commons-collections-3.2.1.jar
|
150
|
+
- lib/celerity/htmlunit/commons-io-2.4.jar
|
151
|
+
- lib/celerity/htmlunit/commons-lang3-3.1.jar
|
152
|
+
- lib/celerity/htmlunit/commons-logging-1.1.1.jar
|
153
|
+
- lib/celerity/htmlunit/cssparser-0.9.9.jar
|
154
|
+
- lib/celerity/htmlunit/htmlunit-2.12.jar
|
155
|
+
- lib/celerity/htmlunit/htmlunit-core-js-2.12.jar
|
156
|
+
- lib/celerity/htmlunit/httpclient-4.2.3.jar
|
157
|
+
- lib/celerity/htmlunit/httpcore-4.2.2.jar
|
158
|
+
- lib/celerity/htmlunit/httpmime-4.2.3.jar
|
159
|
+
- lib/celerity/htmlunit/jetty-http-8.1.9.v20130131.jar
|
160
|
+
- lib/celerity/htmlunit/jetty-io-8.1.9.v20130131.jar
|
161
|
+
- lib/celerity/htmlunit/jetty-util-8.1.9.v20130131.jar
|
162
|
+
- lib/celerity/htmlunit/jetty-websocket-8.1.9.v20130131.jar
|
163
|
+
- lib/celerity/htmlunit/nekohtml-1.9.18.jar
|
164
|
+
- lib/celerity/htmlunit/sac-1.3.jar
|
165
|
+
- lib/celerity/htmlunit/serializer-2.7.1.jar
|
166
|
+
- lib/celerity/htmlunit/xalan-2.7.1.jar
|
167
|
+
- lib/celerity/htmlunit/xercesImpl-2.10.0.jar
|
168
|
+
- lib/celerity/htmlunit/xml-apis-1.4.01.jar
|
169
|
+
- lib/celerity/identifier.rb
|
170
|
+
- lib/celerity/ignoring_web_connection.rb
|
171
|
+
- lib/celerity/input_element.rb
|
172
|
+
- lib/celerity/javascript_debugger.rb
|
173
|
+
- lib/celerity/listener.rb
|
174
|
+
- lib/celerity/resources/no_viewer.png
|
175
|
+
- lib/celerity/short_inspect.rb
|
176
|
+
- lib/celerity/util.rb
|
177
|
+
- lib/celerity/version.rb
|
178
|
+
- lib/celerity/viewer_connection.rb
|
179
|
+
- lib/celerity/watir_compatibility.rb
|
180
|
+
- lib/celerity/xpath_support.rb
|
181
|
+
- spec/browser_authentication_spec.rb
|
182
|
+
- spec/browser_spec.rb
|
183
|
+
- spec/button_spec.rb
|
184
|
+
- spec/clickable_element_spec.rb
|
185
|
+
- spec/default_viewer_spec.rb
|
186
|
+
- spec/element_spec.rb
|
187
|
+
- spec/filefield_spec.rb
|
188
|
+
- spec/htmlunit_spec.rb
|
189
|
+
- spec/implementation.rb
|
190
|
+
- spec/index_offset_spec.rb
|
191
|
+
- spec/link_spec.rb
|
192
|
+
- spec/listener_spec.rb
|
193
|
+
- spec/spec_helper.rb
|
194
|
+
- spec/table_spec.rb
|
195
|
+
- spec/watir_compatibility_spec.rb
|
196
|
+
- tasks/benchmark.rake
|
197
|
+
- tasks/check.rake
|
198
|
+
- tasks/clean.rake
|
199
|
+
- tasks/fix.rake
|
200
|
+
- tasks/jar.rake
|
201
|
+
- tasks/rdoc.rake
|
202
|
+
- tasks/snapshot.rake
|
203
|
+
- tasks/spec.rake
|
204
|
+
- tasks/website.rake
|
205
|
+
- tasks/yard.rake
|
206
|
+
- website/benchmarks.html
|
207
|
+
- website/css/color.css
|
208
|
+
- website/css/hacks.css
|
209
|
+
- website/css/layout.css
|
210
|
+
- website/css/screen.css
|
211
|
+
- website/css/textmate.css
|
212
|
+
- website/css/typography.css
|
213
|
+
- website/gfx/body_bg.gif
|
214
|
+
- website/gfx/button_bg.jpg
|
215
|
+
- website/gfx/header_bg.jpg
|
216
|
+
- website/gfx/header_left.jpg
|
217
|
+
- website/gfx/header_right.jpg
|
218
|
+
- website/gfx/nav_bg.jpg
|
219
|
+
- website/index.html
|
220
|
+
- website/yard/index.html
|
221
|
+
homepage: http://github.com/jarib/celerity
|
222
|
+
licenses: []
|
223
|
+
post_install_message:
|
224
|
+
rdoc_options: []
|
225
|
+
require_paths:
|
226
|
+
- lib
|
227
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
228
|
+
none: false
|
229
|
+
requirements:
|
230
|
+
- - ! '>='
|
231
|
+
- !ruby/object:Gem::Version
|
232
|
+
version: '0'
|
233
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
|
+
none: false
|
235
|
+
requirements:
|
236
|
+
- - ! '>='
|
237
|
+
- !ruby/object:Gem::Version
|
238
|
+
version: '0'
|
239
|
+
requirements: []
|
240
|
+
rubyforge_project: celerity
|
241
|
+
rubygems_version: 1.8.24
|
242
|
+
signing_key:
|
243
|
+
specification_version: 3
|
244
|
+
summary: Celerity is a JRuby library for easy and fast functional test automation
|
245
|
+
for web applications.
|
246
|
+
test_files: []
|