no-click-exception-celerity 0.9.0

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.
Files changed (114) hide show
  1. data/.document +5 -0
  2. data/.gitignore +9 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE +621 -0
  7. data/README.rdoc +83 -0
  8. data/Rakefile +15 -0
  9. data/benchmark/bm_2000_spans.rb +48 -0
  10. data/benchmark/bm_digg.rb +26 -0
  11. data/benchmark/bm_google_images.rb +36 -0
  12. data/benchmark/bm_input_locator.rb +69 -0
  13. data/benchmark/bm_text_input.rb +19 -0
  14. data/benchmark/loader.rb +14 -0
  15. data/celerity.gemspec +26 -0
  16. data/lib/celerity.rb +75 -0
  17. data/lib/celerity/browser.rb +924 -0
  18. data/lib/celerity/clickable_element.rb +87 -0
  19. data/lib/celerity/collections.rb +164 -0
  20. data/lib/celerity/container.rb +802 -0
  21. data/lib/celerity/default_viewer.rb +14 -0
  22. data/lib/celerity/disabled_element.rb +40 -0
  23. data/lib/celerity/element.rb +314 -0
  24. data/lib/celerity/element_collection.rb +115 -0
  25. data/lib/celerity/element_locator.rb +164 -0
  26. data/lib/celerity/elements/button.rb +54 -0
  27. data/lib/celerity/elements/file_field.rb +29 -0
  28. data/lib/celerity/elements/form.rb +22 -0
  29. data/lib/celerity/elements/frame.rb +86 -0
  30. data/lib/celerity/elements/image.rb +89 -0
  31. data/lib/celerity/elements/label.rb +16 -0
  32. data/lib/celerity/elements/link.rb +43 -0
  33. data/lib/celerity/elements/meta.rb +14 -0
  34. data/lib/celerity/elements/non_control_elements.rb +124 -0
  35. data/lib/celerity/elements/option.rb +38 -0
  36. data/lib/celerity/elements/radio_check.rb +114 -0
  37. data/lib/celerity/elements/select_list.rb +146 -0
  38. data/lib/celerity/elements/table.rb +154 -0
  39. data/lib/celerity/elements/table_cell.rb +36 -0
  40. data/lib/celerity/elements/table_elements.rb +42 -0
  41. data/lib/celerity/elements/table_row.rb +54 -0
  42. data/lib/celerity/elements/text_field.rb +168 -0
  43. data/lib/celerity/exception.rb +83 -0
  44. data/lib/celerity/htmlunit.rb +64 -0
  45. data/lib/celerity/htmlunit/commons-codec-1.4.jar +0 -0
  46. data/lib/celerity/htmlunit/commons-collections-3.2.1.jar +0 -0
  47. data/lib/celerity/htmlunit/commons-io-2.0.1.jar +0 -0
  48. data/lib/celerity/htmlunit/commons-lang3-3.0.1.jar +0 -0
  49. data/lib/celerity/htmlunit/commons-logging-1.1.1.jar +0 -0
  50. data/lib/celerity/htmlunit/cssparser-0.9.6-20110829.205617-3.jar +0 -0
  51. data/lib/celerity/htmlunit/htmlunit-2.10-SNAPSHOT.jar +0 -0
  52. data/lib/celerity/htmlunit/htmlunit-core-js-2.9.jar +0 -0
  53. data/lib/celerity/htmlunit/httpclient-4.1.2.jar +0 -0
  54. data/lib/celerity/htmlunit/httpcore-4.1.2.jar +0 -0
  55. data/lib/celerity/htmlunit/httpmime-4.1.2.jar +0 -0
  56. data/lib/celerity/htmlunit/nekohtml-1.9.15.jar +0 -0
  57. data/lib/celerity/htmlunit/sac-1.3.jar +0 -0
  58. data/lib/celerity/htmlunit/serializer-2.7.1.jar +0 -0
  59. data/lib/celerity/htmlunit/xalan-2.7.1.jar +0 -0
  60. data/lib/celerity/htmlunit/xercesImpl-2.9.1.jar +0 -0
  61. data/lib/celerity/htmlunit/xml-apis-1.3.04.jar +0 -0
  62. data/lib/celerity/identifier.rb +28 -0
  63. data/lib/celerity/ignoring_web_connection.rb +15 -0
  64. data/lib/celerity/input_element.rb +25 -0
  65. data/lib/celerity/javascript_debugger.rb +32 -0
  66. data/lib/celerity/listener.rb +143 -0
  67. data/lib/celerity/resources/no_viewer.png +0 -0
  68. data/lib/celerity/short_inspect.rb +20 -0
  69. data/lib/celerity/util.rb +129 -0
  70. data/lib/celerity/version.rb +3 -0
  71. data/lib/celerity/viewer_connection.rb +89 -0
  72. data/lib/celerity/watir_compatibility.rb +70 -0
  73. data/lib/celerity/xpath_support.rb +50 -0
  74. data/spec/browser_authentication_spec.rb +16 -0
  75. data/spec/browser_spec.rb +428 -0
  76. data/spec/button_spec.rb +24 -0
  77. data/spec/clickable_element_spec.rb +39 -0
  78. data/spec/default_viewer_spec.rb +23 -0
  79. data/spec/element_spec.rb +77 -0
  80. data/spec/filefield_spec.rb +18 -0
  81. data/spec/htmlunit_spec.rb +63 -0
  82. data/spec/implementation.rb +7 -0
  83. data/spec/index_offset_spec.rb +24 -0
  84. data/spec/link_spec.rb +16 -0
  85. data/spec/listener_spec.rb +142 -0
  86. data/spec/spec_helper.rb +6 -0
  87. data/spec/table_spec.rb +41 -0
  88. data/spec/watir_compatibility_spec.rb +32 -0
  89. data/tasks/benchmark.rake +4 -0
  90. data/tasks/check.rake +24 -0
  91. data/tasks/clean.rake +3 -0
  92. data/tasks/fix.rake +25 -0
  93. data/tasks/jar.rake +55 -0
  94. data/tasks/rdoc.rake +4 -0
  95. data/tasks/snapshot.rake +25 -0
  96. data/tasks/spec.rake +27 -0
  97. data/tasks/website.rake +10 -0
  98. data/tasks/yard.rake +16 -0
  99. data/website/benchmarks.html +237 -0
  100. data/website/css/color.css +153 -0
  101. data/website/css/hacks.css +3 -0
  102. data/website/css/layout.css +179 -0
  103. data/website/css/screen.css +5 -0
  104. data/website/css/textmate.css +226 -0
  105. data/website/css/typography.css +72 -0
  106. data/website/gfx/body_bg.gif +0 -0
  107. data/website/gfx/button_bg.jpg +0 -0
  108. data/website/gfx/header_bg.jpg +0 -0
  109. data/website/gfx/header_left.jpg +0 -0
  110. data/website/gfx/header_right.jpg +0 -0
  111. data/website/gfx/nav_bg.jpg +0 -0
  112. data/website/index.html +125 -0
  113. data/website/yard/index.html +1 -0
  114. metadata +224 -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
@@ -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 &#x2192;</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
+ &nbsp;
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
+ <!--&nbsp;
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&#8209;<span class="red">AAA</span>&nbsp;WCAG&nbsp;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,224 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: no-click-exception-celerity
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.9.0
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
+
15
+ date: 2011-10-12 00:00:00 -07:00
16
+ default_executable:
17
+ dependencies:
18
+ - !ruby/object:Gem::Dependency
19
+ name: rake
20
+ prerelease: false
21
+ requirement: &id001 !ruby/object:Gem::Requirement
22
+ none: false
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.2
27
+ type: :development
28
+ version_requirements: *id001
29
+ - !ruby/object:Gem::Dependency
30
+ name: rspec
31
+ prerelease: false
32
+ requirement: &id002 !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 2.0.0
38
+ type: :development
39
+ version_requirements: *id002
40
+ - !ruby/object:Gem::Dependency
41
+ name: yard
42
+ prerelease: false
43
+ requirement: &id003 !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ type: :development
50
+ version_requirements: *id003
51
+ - !ruby/object:Gem::Dependency
52
+ name: sinatra
53
+ prerelease: false
54
+ requirement: &id004 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ~>
58
+ - !ruby/object:Gem::Version
59
+ version: "1.0"
60
+ type: :development
61
+ version_requirements: *id004
62
+ - !ruby/object:Gem::Dependency
63
+ name: mongrel
64
+ prerelease: false
65
+ requirement: &id005 !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: "0"
71
+ type: :development
72
+ version_requirements: *id005
73
+ 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."
74
+ email: jari.bakken@gmail.com
75
+ executables: []
76
+
77
+ extensions: []
78
+
79
+ extra_rdoc_files: []
80
+
81
+ files:
82
+ - .document
83
+ - .gitignore
84
+ - .gitmodules
85
+ - .travis.yml
86
+ - Gemfile
87
+ - LICENSE
88
+ - README.rdoc
89
+ - Rakefile
90
+ - benchmark/bm_2000_spans.rb
91
+ - benchmark/bm_digg.rb
92
+ - benchmark/bm_google_images.rb
93
+ - benchmark/bm_input_locator.rb
94
+ - benchmark/bm_text_input.rb
95
+ - benchmark/loader.rb
96
+ - celerity.gemspec
97
+ - lib/celerity.rb
98
+ - lib/celerity/browser.rb
99
+ - lib/celerity/clickable_element.rb
100
+ - lib/celerity/collections.rb
101
+ - lib/celerity/container.rb
102
+ - lib/celerity/default_viewer.rb
103
+ - lib/celerity/disabled_element.rb
104
+ - lib/celerity/element.rb
105
+ - lib/celerity/element_collection.rb
106
+ - lib/celerity/element_locator.rb
107
+ - lib/celerity/elements/button.rb
108
+ - lib/celerity/elements/file_field.rb
109
+ - lib/celerity/elements/form.rb
110
+ - lib/celerity/elements/frame.rb
111
+ - lib/celerity/elements/image.rb
112
+ - lib/celerity/elements/label.rb
113
+ - lib/celerity/elements/link.rb
114
+ - lib/celerity/elements/meta.rb
115
+ - lib/celerity/elements/non_control_elements.rb
116
+ - lib/celerity/elements/option.rb
117
+ - lib/celerity/elements/radio_check.rb
118
+ - lib/celerity/elements/select_list.rb
119
+ - lib/celerity/elements/table.rb
120
+ - lib/celerity/elements/table_cell.rb
121
+ - lib/celerity/elements/table_elements.rb
122
+ - lib/celerity/elements/table_row.rb
123
+ - lib/celerity/elements/text_field.rb
124
+ - lib/celerity/exception.rb
125
+ - lib/celerity/htmlunit.rb
126
+ - lib/celerity/htmlunit/commons-codec-1.4.jar
127
+ - lib/celerity/htmlunit/commons-collections-3.2.1.jar
128
+ - lib/celerity/htmlunit/commons-io-2.0.1.jar
129
+ - lib/celerity/htmlunit/commons-lang3-3.0.1.jar
130
+ - lib/celerity/htmlunit/commons-logging-1.1.1.jar
131
+ - lib/celerity/htmlunit/cssparser-0.9.6-20110829.205617-3.jar
132
+ - lib/celerity/htmlunit/htmlunit-2.10-SNAPSHOT.jar
133
+ - lib/celerity/htmlunit/htmlunit-core-js-2.9.jar
134
+ - lib/celerity/htmlunit/httpclient-4.1.2.jar
135
+ - lib/celerity/htmlunit/httpcore-4.1.2.jar
136
+ - lib/celerity/htmlunit/httpmime-4.1.2.jar
137
+ - lib/celerity/htmlunit/nekohtml-1.9.15.jar
138
+ - lib/celerity/htmlunit/sac-1.3.jar
139
+ - lib/celerity/htmlunit/serializer-2.7.1.jar
140
+ - lib/celerity/htmlunit/xalan-2.7.1.jar
141
+ - lib/celerity/htmlunit/xercesImpl-2.9.1.jar
142
+ - lib/celerity/htmlunit/xml-apis-1.3.04.jar
143
+ - lib/celerity/identifier.rb
144
+ - lib/celerity/ignoring_web_connection.rb
145
+ - lib/celerity/input_element.rb
146
+ - lib/celerity/javascript_debugger.rb
147
+ - lib/celerity/listener.rb
148
+ - lib/celerity/resources/no_viewer.png
149
+ - lib/celerity/short_inspect.rb
150
+ - lib/celerity/util.rb
151
+ - lib/celerity/version.rb
152
+ - lib/celerity/viewer_connection.rb
153
+ - lib/celerity/watir_compatibility.rb
154
+ - lib/celerity/xpath_support.rb
155
+ - spec/browser_authentication_spec.rb
156
+ - spec/browser_spec.rb
157
+ - spec/button_spec.rb
158
+ - spec/clickable_element_spec.rb
159
+ - spec/default_viewer_spec.rb
160
+ - spec/element_spec.rb
161
+ - spec/filefield_spec.rb
162
+ - spec/htmlunit_spec.rb
163
+ - spec/implementation.rb
164
+ - spec/index_offset_spec.rb
165
+ - spec/link_spec.rb
166
+ - spec/listener_spec.rb
167
+ - spec/spec_helper.rb
168
+ - spec/table_spec.rb
169
+ - spec/watir_compatibility_spec.rb
170
+ - tasks/benchmark.rake
171
+ - tasks/check.rake
172
+ - tasks/clean.rake
173
+ - tasks/fix.rake
174
+ - tasks/jar.rake
175
+ - tasks/rdoc.rake
176
+ - tasks/snapshot.rake
177
+ - tasks/spec.rake
178
+ - tasks/website.rake
179
+ - tasks/yard.rake
180
+ - website/benchmarks.html
181
+ - website/css/color.css
182
+ - website/css/hacks.css
183
+ - website/css/layout.css
184
+ - website/css/screen.css
185
+ - website/css/textmate.css
186
+ - website/css/typography.css
187
+ - website/gfx/body_bg.gif
188
+ - website/gfx/button_bg.jpg
189
+ - website/gfx/header_bg.jpg
190
+ - website/gfx/header_left.jpg
191
+ - website/gfx/header_right.jpg
192
+ - website/gfx/nav_bg.jpg
193
+ - website/index.html
194
+ - website/yard/index.html
195
+ has_rdoc: true
196
+ homepage: http://github.com/jarib/celerity
197
+ licenses: []
198
+
199
+ post_install_message:
200
+ rdoc_options: []
201
+
202
+ require_paths:
203
+ - lib
204
+ required_ruby_version: !ruby/object:Gem::Requirement
205
+ none: false
206
+ requirements:
207
+ - - ">="
208
+ - !ruby/object:Gem::Version
209
+ version: "0"
210
+ required_rubygems_version: !ruby/object:Gem::Requirement
211
+ none: false
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: "0"
216
+ requirements: []
217
+
218
+ rubyforge_project: celerity
219
+ rubygems_version: 1.5.1
220
+ signing_key:
221
+ specification_version: 3
222
+ summary: Celerity is a JRuby library for easy and fast functional test automation for web applications.
223
+ test_files: []
224
+