watir 6.10.0 → 6.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.document +5 -5
- data/.github/ISSUE_TEMPLATE.md +16 -16
- data/.gitignore +21 -21
- data/.travis.yml +72 -72
- data/CHANGES.md +6 -0
- data/Gemfile +16 -16
- data/LICENSE +23 -23
- data/README.md +106 -106
- data/Rakefile +153 -153
- data/appveyor.yml +13 -13
- data/lib/watir-webdriver.rb +2 -2
- data/lib/watir.rb +158 -158
- data/lib/watir/adjacent.rb +126 -126
- data/lib/watir/after_hooks.rb +132 -132
- data/lib/watir/alert.rb +120 -120
- data/lib/watir/aliases.rb +6 -6
- data/lib/watir/attribute_helper.rb +96 -96
- data/lib/watir/browser.rb +349 -349
- data/lib/watir/capabilities.rb +123 -123
- data/lib/watir/cell_container.rb +25 -25
- data/lib/watir/container.rb +51 -51
- data/lib/watir/cookies.rb +134 -134
- data/lib/watir/element_collection.rb +138 -138
- data/lib/watir/elements/area.rb +12 -12
- data/lib/watir/elements/button.rb +37 -37
- data/lib/watir/elements/cell.rb +17 -17
- data/lib/watir/elements/checkbox.rb +56 -56
- data/lib/watir/elements/dlist.rb +12 -12
- data/lib/watir/elements/element.rb +6 -5
- data/lib/watir/elements/file_field.rb +41 -41
- data/lib/watir/elements/font.rb +25 -25
- data/lib/watir/elements/form.rb +16 -16
- data/lib/watir/elements/hidden.rb +25 -25
- data/lib/watir/elements/html_elements.rb +2035 -2035
- data/lib/watir/elements/iframe.rb +166 -166
- data/lib/watir/elements/image.rb +21 -21
- data/lib/watir/elements/input.rb +15 -15
- data/lib/watir/elements/link.rb +18 -18
- data/lib/watir/elements/list.rb +49 -49
- data/lib/watir/elements/option.rb +72 -72
- data/lib/watir/elements/radio.rb +60 -60
- data/lib/watir/elements/row.rb +17 -17
- data/lib/watir/elements/select.rb +250 -250
- data/lib/watir/elements/svg_elements.rb +613 -613
- data/lib/watir/elements/table.rb +76 -76
- data/lib/watir/elements/table_cell.rb +31 -31
- data/lib/watir/elements/table_row.rb +32 -32
- data/lib/watir/elements/table_section.rb +15 -15
- data/lib/watir/elements/text_area.rb +5 -5
- data/lib/watir/elements/text_field.rb +39 -39
- data/lib/watir/exception.rb +16 -16
- data/lib/watir/extensions/nokogiri.rb +14 -14
- data/lib/watir/generator.rb +3 -3
- data/lib/watir/generator/base.rb +11 -11
- data/lib/watir/generator/base/generator.rb +115 -115
- data/lib/watir/generator/base/idl_sorter.rb +47 -47
- data/lib/watir/generator/base/spec_extractor.rb +138 -138
- data/lib/watir/generator/base/util.rb +21 -21
- data/lib/watir/generator/base/visitor.rb +162 -162
- data/lib/watir/generator/html.rb +15 -15
- data/lib/watir/generator/html/generator.rb +36 -36
- data/lib/watir/generator/html/spec_extractor.rb +50 -50
- data/lib/watir/generator/html/visitor.rb +21 -21
- data/lib/watir/generator/svg.rb +7 -7
- data/lib/watir/generator/svg/generator.rb +38 -38
- data/lib/watir/generator/svg/spec_extractor.rb +53 -53
- data/lib/watir/generator/svg/visitor.rb +21 -21
- data/lib/watir/has_window.rb +68 -68
- data/lib/watir/js_execution.rb +143 -143
- data/lib/watir/js_snippets.rb +16 -16
- data/lib/watir/js_snippets/backgroundColor.js +7 -7
- data/lib/watir/js_snippets/fireEvent.js +31 -31
- data/lib/watir/js_snippets/focus.js +3 -3
- data/lib/watir/js_snippets/getInnerHtml.js +19 -19
- data/lib/watir/js_snippets/getInnerText.js +19 -19
- data/lib/watir/js_snippets/getOuterHtml.js +20 -20
- data/lib/watir/js_snippets/getTextContent.js +19 -19
- data/lib/watir/js_snippets/isImageLoaded.js +3 -3
- data/lib/watir/js_snippets/selectOptionsLabel.js +10 -10
- data/lib/watir/js_snippets/selectOptionsText.js +10 -10
- data/lib/watir/js_snippets/selectOptionsValue.js +10 -10
- data/lib/watir/js_snippets/selectText.js +64 -64
- data/lib/watir/js_snippets/selectedOptions.js +11 -11
- data/lib/watir/js_snippets/setValue.js +3 -3
- data/lib/watir/legacy_wait.rb +126 -126
- data/lib/watir/locators.rb +60 -60
- data/lib/watir/locators/button/locator.rb +31 -31
- data/lib/watir/locators/button/selector_builder.rb +30 -30
- data/lib/watir/locators/button/selector_builder/xpath.rb +29 -29
- data/lib/watir/locators/button/validator.rb +15 -15
- data/lib/watir/locators/cell/locator.rb +15 -15
- data/lib/watir/locators/cell/selector_builder.rb +24 -24
- data/lib/watir/locators/element/locator.rb +1 -0
- data/lib/watir/locators/element/selector_builder.rb +150 -150
- data/lib/watir/locators/element/selector_builder/xpath.rb +119 -119
- data/lib/watir/locators/element/validator.rb +18 -18
- data/lib/watir/locators/row/locator.rb +15 -15
- data/lib/watir/locators/row/selector_builder.rb +29 -29
- data/lib/watir/locators/text_area/locator.rb +13 -13
- data/lib/watir/locators/text_area/selector_builder.rb +22 -22
- data/lib/watir/locators/text_field/locator.rb +30 -30
- data/lib/watir/locators/text_field/selector_builder.rb +31 -31
- data/lib/watir/locators/text_field/selector_builder/xpath.rb +17 -17
- data/lib/watir/locators/text_field/validator.rb +12 -12
- data/lib/watir/logger.rb +109 -109
- data/lib/watir/radio_set.rb +231 -231
- data/lib/watir/row_container.rb +36 -36
- data/lib/watir/screenshot.rb +50 -50
- data/lib/watir/user_editable.rb +56 -56
- data/lib/watir/wait.rb +200 -200
- data/lib/watir/wait/timer.rb +52 -52
- data/lib/watir/window.rb +257 -257
- data/lib/watir/xpath_support.rb +20 -20
- data/lib/watirspec.rb +86 -86
- data/lib/watirspec/guards.rb +60 -60
- data/lib/watirspec/implementation.rb +51 -51
- data/lib/watirspec/rake_tasks.rb +115 -115
- data/lib/watirspec/remote_server.rb +38 -38
- data/lib/watirspec/runner.rb +53 -53
- data/lib/watirspec/server.rb +99 -99
- data/lib/watirspec/server/app.rb +76 -76
- data/spec/browser_spec.rb +278 -278
- data/spec/click_spec.rb +19 -19
- data/spec/container_spec.rb +34 -34
- data/spec/element_locator_spec.rb +517 -517
- data/spec/element_spec.rb +158 -158
- data/spec/implementation_spec.rb +24 -24
- data/spec/input_spec.rb +14 -14
- data/spec/locator_spec_helper.rb +55 -55
- data/spec/logger_spec.rb +46 -46
- data/spec/spec_helper.rb +22 -22
- data/spec/special_chars_spec.rb +13 -13
- data/spec/watirspec/adjacent_spec.rb +227 -227
- data/spec/watirspec/after_hooks_spec.rb +182 -182
- data/spec/watirspec/alert_spec.rb +108 -108
- data/spec/watirspec/attributes_spec.rb +16 -16
- data/spec/watirspec/browser_spec.rb +281 -281
- data/spec/watirspec/cookies_spec.rb +154 -154
- data/spec/watirspec/drag_and_drop_spec.rb +49 -49
- data/spec/watirspec/element_hidden_spec.rb +75 -75
- data/spec/watirspec/elements/area_spec.rb +72 -72
- data/spec/watirspec/elements/areas_spec.rb +42 -42
- data/spec/watirspec/elements/button_spec.rb +277 -277
- data/spec/watirspec/elements/buttons_spec.rb +55 -55
- data/spec/watirspec/elements/checkbox_spec.rb +275 -275
- data/spec/watirspec/elements/checkboxes_spec.rb +44 -44
- data/spec/watirspec/elements/collections_spec.rb +52 -52
- data/spec/watirspec/elements/dd_spec.rb +124 -124
- data/spec/watirspec/elements/dds_spec.rb +42 -42
- data/spec/watirspec/elements/del_spec.rb +126 -126
- data/spec/watirspec/elements/dels_spec.rb +40 -40
- data/spec/watirspec/elements/div_spec.rb +245 -245
- data/spec/watirspec/elements/divs_spec.rb +42 -42
- data/spec/watirspec/elements/dl_spec.rb +142 -142
- data/spec/watirspec/elements/dls_spec.rb +43 -43
- data/spec/watirspec/elements/dt_spec.rb +122 -122
- data/spec/watirspec/elements/dts_spec.rb +42 -42
- data/spec/watirspec/elements/element_spec.rb +483 -483
- data/spec/watirspec/elements/elements_spec.rb +47 -47
- data/spec/watirspec/elements/em_spec.rb +96 -96
- data/spec/watirspec/elements/ems_spec.rb +43 -43
- data/spec/watirspec/elements/filefield_spec.rb +170 -170
- data/spec/watirspec/elements/filefields_spec.rb +43 -43
- data/spec/watirspec/elements/font_spec.rb +29 -29
- data/spec/watirspec/elements/form_spec.rb +66 -66
- data/spec/watirspec/elements/forms_spec.rb +46 -46
- data/spec/watirspec/elements/frame_spec.rb +123 -123
- data/spec/watirspec/elements/frames_spec.rb +41 -41
- data/spec/watirspec/elements/hidden_spec.rb +104 -104
- data/spec/watirspec/elements/hiddens_spec.rb +43 -43
- data/spec/watirspec/elements/hn_spec.rb +92 -92
- data/spec/watirspec/elements/hns_spec.rb +38 -38
- data/spec/watirspec/elements/iframe_spec.rb +10 -0
- data/spec/watirspec/elements/iframes_spec.rb +47 -47
- data/spec/watirspec/elements/image_spec.rb +158 -158
- data/spec/watirspec/elements/images_spec.rb +40 -40
- data/spec/watirspec/elements/ins_spec.rb +127 -127
- data/spec/watirspec/elements/inses_spec.rb +40 -40
- data/spec/watirspec/elements/label_spec.rb +75 -75
- data/spec/watirspec/elements/labels_spec.rb +40 -40
- data/spec/watirspec/elements/li_spec.rb +111 -111
- data/spec/watirspec/elements/link_spec.rb +171 -171
- data/spec/watirspec/elements/links_spec.rb +44 -44
- data/spec/watirspec/elements/lis_spec.rb +42 -42
- data/spec/watirspec/elements/list_spec.rb +32 -32
- data/spec/watirspec/elements/map_spec.rb +75 -75
- data/spec/watirspec/elements/maps_spec.rb +41 -41
- data/spec/watirspec/elements/meta_spec.rb +23 -23
- data/spec/watirspec/elements/metas_spec.rb +40 -40
- data/spec/watirspec/elements/ol_spec.rb +87 -87
- data/spec/watirspec/elements/ols_spec.rb +40 -40
- data/spec/watirspec/elements/option_spec.rb +121 -121
- data/spec/watirspec/elements/p_spec.rb +111 -111
- data/spec/watirspec/elements/pre_spec.rb +111 -111
- data/spec/watirspec/elements/pres_spec.rb +40 -40
- data/spec/watirspec/elements/ps_spec.rb +40 -40
- data/spec/watirspec/elements/radio_spec.rb +273 -273
- data/spec/watirspec/elements/radios_spec.rb +43 -43
- data/spec/watirspec/elements/select_list_spec.rb +553 -553
- data/spec/watirspec/elements/select_lists_spec.rb +46 -46
- data/spec/watirspec/elements/span_spec.rb +128 -128
- data/spec/watirspec/elements/spans_spec.rb +40 -40
- data/spec/watirspec/elements/strong_spec.rb +88 -88
- data/spec/watirspec/elements/strongs_spec.rb +43 -43
- data/spec/watirspec/elements/table_nesting_spec.rb +51 -51
- data/spec/watirspec/elements/table_spec.rb +156 -156
- data/spec/watirspec/elements/tables_spec.rb +42 -42
- data/spec/watirspec/elements/tbody_spec.rb +93 -93
- data/spec/watirspec/elements/tbodys_spec.rb +62 -62
- data/spec/watirspec/elements/td_spec.rb +93 -93
- data/spec/watirspec/elements/tds_spec.rb +53 -53
- data/spec/watirspec/elements/text_field_spec.rb +360 -360
- data/spec/watirspec/elements/text_fields_spec.rb +44 -44
- data/spec/watirspec/elements/textarea_spec.rb +26 -26
- data/spec/watirspec/elements/textareas_spec.rb +24 -24
- data/spec/watirspec/elements/tfoot_spec.rb +86 -86
- data/spec/watirspec/elements/tfoots_spec.rb +68 -68
- data/spec/watirspec/elements/thead_spec.rb +86 -86
- data/spec/watirspec/elements/theads_spec.rb +68 -68
- data/spec/watirspec/elements/tr_spec.rb +78 -78
- data/spec/watirspec/elements/trs_spec.rb +61 -61
- data/spec/watirspec/elements/ul_spec.rb +76 -76
- data/spec/watirspec/elements/uls_spec.rb +39 -39
- data/spec/watirspec/html/alerts.html +12 -12
- data/spec/watirspec/html/aria_attributes.html +9 -9
- data/spec/watirspec/html/class_locator.html +8 -8
- data/spec/watirspec/html/clicks.html +19 -19
- data/spec/watirspec/html/closeable.html +12 -12
- data/spec/watirspec/html/collections.html +14 -14
- data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +286 -286
- data/spec/watirspec/html/data_attributes.html +9 -9
- data/spec/watirspec/html/definition_lists.html +47 -47
- data/spec/watirspec/html/drag_and_drop.html +106 -106
- data/spec/watirspec/html/font.html +10 -10
- data/spec/watirspec/html/forms_with_input_elements.html +174 -174
- data/spec/watirspec/html/frame_1.html +22 -22
- data/spec/watirspec/html/frame_2.html +15 -15
- data/spec/watirspec/html/frames.html +10 -10
- data/spec/watirspec/html/hover.html +11 -11
- data/spec/watirspec/html/iframe_1.html +22 -22
- data/spec/watirspec/html/iframes.html +12 -12
- data/spec/watirspec/html/images.html +27 -27
- data/spec/watirspec/html/inner_outer.html +4 -4
- data/spec/watirspec/html/javascript/angular.min.js +331 -331
- data/spec/watirspec/html/javascript/helpers.js +16 -16
- data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +3 -3
- data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +67 -67
- data/spec/watirspec/html/keylogger.html +14 -14
- data/spec/watirspec/html/modal_dialog.html +9 -9
- data/spec/watirspec/html/multiple_ids.html +14 -14
- data/spec/watirspec/html/nested_elements.html +33 -33
- data/spec/watirspec/html/nested_frame_2.html +9 -9
- data/spec/watirspec/html/nested_frame_3.html +14 -14
- data/spec/watirspec/html/nested_frames.html +10 -10
- data/spec/watirspec/html/nested_iframe_2.html +12 -12
- data/spec/watirspec/html/nested_iframes.html +13 -13
- data/spec/watirspec/html/nested_tables.html +202 -202
- data/spec/watirspec/html/non_control_elements.html +140 -140
- data/spec/watirspec/html/removed_element.html +24 -24
- data/spec/watirspec/html/right_click.html +10 -10
- data/spec/watirspec/html/special_chars.html +11 -11
- data/spec/watirspec/html/tables.html +120 -120
- data/spec/watirspec/html/timeout_window_location.html +19 -19
- data/spec/watirspec/html/uneven_table.html +20 -20
- data/spec/watirspec/html/wait.html +84 -84
- data/spec/watirspec/html/window_switching.html +11 -11
- data/spec/watirspec/radio_set_spec.rb +336 -336
- data/spec/watirspec/relaxed_locate_spec.rb +99 -99
- data/spec/watirspec/screenshot_spec.rb +29 -29
- data/spec/watirspec/support/raise_exception_matchers.rb +36 -36
- data/spec/watirspec/wait_spec.rb +381 -381
- data/spec/watirspec/window_switching_spec.rb +415 -415
- data/spec/watirspec_helper.rb +161 -161
- data/support/appveyor.cmd +9 -9
- data/support/doctest_helper.rb +101 -101
- data/support/travis.sh +11 -11
- data/support/version_differ.rb +59 -59
- data/watir.gemspec +1 -1
- metadata +4 -170
@@ -1,24 +1,24 @@
|
|
1
|
-
<!DOCTYPE HTML>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>obsolete element</title>
|
5
|
-
<script type="text/javascript" charset="utf-8">
|
6
|
-
function removeText() {
|
7
|
-
var e = document.getElementById("text");
|
8
|
-
e.parentNode.removeChild(e);
|
9
|
-
}
|
10
|
-
</script>
|
11
|
-
</head>
|
12
|
-
|
13
|
-
<body>
|
14
|
-
<button id='remove-button' onclick="removeText()">Remove text</button>
|
15
|
-
<div id="text">Text</div>
|
16
|
-
|
17
|
-
<div id='top'>Top Element>
|
18
|
-
<div id='middle'>Middle Element>
|
19
|
-
<div id='bottom'>Bottom Element</div>
|
20
|
-
</div>
|
21
|
-
</div>
|
22
|
-
|
23
|
-
</body>
|
24
|
-
</html>
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>obsolete element</title>
|
5
|
+
<script type="text/javascript" charset="utf-8">
|
6
|
+
function removeText() {
|
7
|
+
var e = document.getElementById("text");
|
8
|
+
e.parentNode.removeChild(e);
|
9
|
+
}
|
10
|
+
</script>
|
11
|
+
</head>
|
12
|
+
|
13
|
+
<body>
|
14
|
+
<button id='remove-button' onclick="removeText()">Remove text</button>
|
15
|
+
<div id="text">Text</div>
|
16
|
+
|
17
|
+
<div id='top'>Top Element>
|
18
|
+
<div id='middle'>Middle Element>
|
19
|
+
<div id='bottom'>Bottom Element</div>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
</body>
|
24
|
+
</html>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
4
|
-
<title>Right Click Test</title>
|
5
|
-
<script src="javascript/helpers.js" type="text/javascript" charset="utf-8"></script>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<div id="messages"></div>
|
9
|
-
<div id="click" oncontextmenu='WatirSpec.addMessage("right-clicked"); return false'>Right click!</div>
|
10
|
-
</body>
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
4
|
+
<title>Right Click Test</title>
|
5
|
+
<script src="javascript/helpers.js" type="text/javascript" charset="utf-8"></script>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<div id="messages"></div>
|
9
|
+
<div id="click" oncontextmenu='WatirSpec.addMessage("right-clicked"); return false'>Right click!</div>
|
10
|
+
</body>
|
11
11
|
</html>
|
@@ -1,12 +1,12 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
-
<title>Special Chars</title>
|
6
|
-
</head>
|
7
|
-
|
8
|
-
<body>
|
9
|
-
<div id='single-quote'>single 'quotes'</div>
|
10
|
-
<div id='double-quote'>double "quotes"</div>
|
11
|
-
</body>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<title>Special Chars</title>
|
6
|
+
</head>
|
7
|
+
|
8
|
+
<body>
|
9
|
+
<div id='single-quote'>single 'quotes'</div>
|
10
|
+
<div id='double-quote'>double "quotes"</div>
|
11
|
+
</body>
|
12
12
|
</html>
|
@@ -1,121 +1,121 @@
|
|
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">
|
3
|
-
<head>
|
4
|
-
<title>Tables</title>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
-
<script src="javascript/helpers.js" type="text/javascript" charset="utf-8"></script>
|
7
|
-
</head>
|
8
|
-
<body>
|
9
|
-
<div id="messages"></div>
|
10
|
-
<h1>Tables</h1>
|
11
|
-
<h2>Semantic table</h2>
|
12
|
-
<table cellspacing="0" cellpadding="5" rules="groups" frame="box" border="1" id="axis_example" summary="Hugh Laurie made more money than Gregory House in both March and April of 2008.">
|
13
|
-
<caption>Income tax information for Gregory House and Hugh Laurie</caption>
|
14
|
-
<colgroup width="25%" align="left"></colgroup>
|
15
|
-
<colgroup width="25%" span="3" align="right"></colgroup>
|
16
|
-
<thead id="tax_headers">
|
17
|
-
<tr style="border-bottom: 1px solid black;" class="dark" id="thead_row_1">
|
18
|
-
<th></th>
|
19
|
-
<th id="before_tax" axis="cash" abbr="Before tax">Before income tax</th>
|
20
|
-
<th id="tax" axis="cash" abbr="Tax">Income tax</th>
|
21
|
-
<th id="after_tax" axis="cash" abbr="After tax">After income tax</th>
|
22
|
-
</tr>
|
23
|
-
</thead>
|
24
|
-
<tfoot id="tax_totals">
|
25
|
-
<tr class="dark" id="tfoot_row_1">
|
26
|
-
<th axis="sum">Sum</th>
|
27
|
-
<td headers="before_tax">24 349</td>
|
28
|
-
<td headers="tax">5 577</td>
|
29
|
-
<td headers="after_tax">18 722</td>
|
30
|
-
</tr>
|
31
|
-
</tfoot>
|
32
|
-
<tbody id="first">
|
33
|
-
<tr id="march">
|
34
|
-
<th id="d1" axis="date" scope="rowgroup">March 2008</th>
|
35
|
-
<th></th>
|
36
|
-
<th></th>
|
37
|
-
<th></th>
|
38
|
-
</tr>
|
39
|
-
<tr id="gregory">
|
40
|
-
<td id="p1" abbr="Dr. House">Gregory House</td>
|
41
|
-
<td headers="before_tax p1 d1">5 934</td>
|
42
|
-
<td headers="tax p1 d1">1 347</td>
|
43
|
-
<td headers="after_tax p1 d1">4 587</td>
|
44
|
-
</tr>
|
45
|
-
<tr id="hugh">
|
46
|
-
<td id="p2" abbr="Laurie">Hugh Laurie</td>
|
47
|
-
<td headers="before_tax p2 d1">6 300</td>
|
48
|
-
<td headers="tax p2 d1">1 479</td>
|
49
|
-
<td headers="after_tax p2 d1">4 821</td>
|
50
|
-
</tr>
|
51
|
-
</tbody>
|
52
|
-
<tbody name="second" id="second">
|
53
|
-
<tr>
|
54
|
-
<th id="d2" axis="date" scope="rowgroup">April 2008</th>
|
55
|
-
<th></th>
|
56
|
-
<th></th>
|
57
|
-
<th></th>
|
58
|
-
</tr>
|
59
|
-
<tr>
|
60
|
-
<td id="p3" abbr="Dr. House">Gregory House</td>
|
61
|
-
<td headers="before_tax p3 d2">5 863</td>
|
62
|
-
<td headers="tax p3 d2">1 331</td>
|
63
|
-
<td headers="after_tax p3 d2">4 532</td>
|
64
|
-
</tr>
|
65
|
-
<tr>
|
66
|
-
<td id="p4" abbr="Laurie">Hugh Laurie</td>
|
67
|
-
<td headers="before_tax p4 d2">6 252</td>
|
68
|
-
<td headers="tax p4 d2">1 420</td>
|
69
|
-
<td headers="after_tax p4 d2">4 <span id="cell-child">832</span></td>
|
70
|
-
</tr>
|
71
|
-
</tbody>
|
72
|
-
</table>
|
73
|
-
<h2>Table inside a table</h2>
|
74
|
-
<table border="1" id="outer">
|
75
|
-
<tr id="outer_first">
|
76
|
-
<td>
|
77
|
-
Table 1, Row 1, Cell 1
|
78
|
-
</td>
|
79
|
-
<td>
|
80
|
-
Table 1, Row 1, Cell 2
|
81
|
-
</td>
|
82
|
-
</tr>
|
83
|
-
<tr id="outer_second">
|
84
|
-
<td id="t1_r2_c1">
|
85
|
-
Table 1, Row 2, Cell 1
|
86
|
-
</td>
|
87
|
-
<td id="t1_r2_c2">
|
88
|
-
Table 1, Row 2, Cell 2
|
89
|
-
<table border="1" id="inner" onclick="WatirSpec.addMessage('table')">
|
90
|
-
<tr id="inner_first" onclick="WatirSpec.addMessage('tr')">
|
91
|
-
<td id="t2_r1_c1" onclick="WatirSpec.addMessage('td')">
|
92
|
-
Table 2, Row 1, Cell 1
|
93
|
-
</td>
|
94
|
-
<td>
|
95
|
-
Table 2, Row 1, Cell 2
|
96
|
-
</td>
|
97
|
-
</tr>
|
98
|
-
</table>
|
99
|
-
</td>
|
100
|
-
</tr>
|
101
|
-
<tr id="outer_last">
|
102
|
-
<td>
|
103
|
-
Table 1, Row 3, Cell 1
|
104
|
-
</td>
|
105
|
-
<td>
|
106
|
-
Table 1, Row 3, Cell 2
|
107
|
-
</td>
|
108
|
-
</tr>
|
109
|
-
</table>
|
110
|
-
<h2>Colspan</h2>
|
111
|
-
<table border="1" id="colspan">
|
112
|
-
<tr>
|
113
|
-
<td colspan="2" id="colspan_2">Colspan 2</td>
|
114
|
-
</tr>
|
115
|
-
<tr>
|
116
|
-
<td id="no_colspan">No colspan attribute</td>
|
117
|
-
<td>No colspan attribute</td>
|
118
|
-
</tr>
|
119
|
-
</table>
|
120
|
-
</body>
|
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">
|
3
|
+
<head>
|
4
|
+
<title>Tables</title>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<script src="javascript/helpers.js" type="text/javascript" charset="utf-8"></script>
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
<div id="messages"></div>
|
10
|
+
<h1>Tables</h1>
|
11
|
+
<h2>Semantic table</h2>
|
12
|
+
<table cellspacing="0" cellpadding="5" rules="groups" frame="box" border="1" id="axis_example" summary="Hugh Laurie made more money than Gregory House in both March and April of 2008.">
|
13
|
+
<caption>Income tax information for Gregory House and Hugh Laurie</caption>
|
14
|
+
<colgroup width="25%" align="left"></colgroup>
|
15
|
+
<colgroup width="25%" span="3" align="right"></colgroup>
|
16
|
+
<thead id="tax_headers">
|
17
|
+
<tr style="border-bottom: 1px solid black;" class="dark" id="thead_row_1">
|
18
|
+
<th></th>
|
19
|
+
<th id="before_tax" axis="cash" abbr="Before tax">Before income tax</th>
|
20
|
+
<th id="tax" axis="cash" abbr="Tax">Income tax</th>
|
21
|
+
<th id="after_tax" axis="cash" abbr="After tax">After income tax</th>
|
22
|
+
</tr>
|
23
|
+
</thead>
|
24
|
+
<tfoot id="tax_totals">
|
25
|
+
<tr class="dark" id="tfoot_row_1">
|
26
|
+
<th axis="sum">Sum</th>
|
27
|
+
<td headers="before_tax">24 349</td>
|
28
|
+
<td headers="tax">5 577</td>
|
29
|
+
<td headers="after_tax">18 722</td>
|
30
|
+
</tr>
|
31
|
+
</tfoot>
|
32
|
+
<tbody id="first">
|
33
|
+
<tr id="march">
|
34
|
+
<th id="d1" axis="date" scope="rowgroup">March 2008</th>
|
35
|
+
<th></th>
|
36
|
+
<th></th>
|
37
|
+
<th></th>
|
38
|
+
</tr>
|
39
|
+
<tr id="gregory">
|
40
|
+
<td id="p1" abbr="Dr. House">Gregory House</td>
|
41
|
+
<td headers="before_tax p1 d1">5 934</td>
|
42
|
+
<td headers="tax p1 d1">1 347</td>
|
43
|
+
<td headers="after_tax p1 d1">4 587</td>
|
44
|
+
</tr>
|
45
|
+
<tr id="hugh">
|
46
|
+
<td id="p2" abbr="Laurie">Hugh Laurie</td>
|
47
|
+
<td headers="before_tax p2 d1">6 300</td>
|
48
|
+
<td headers="tax p2 d1">1 479</td>
|
49
|
+
<td headers="after_tax p2 d1">4 821</td>
|
50
|
+
</tr>
|
51
|
+
</tbody>
|
52
|
+
<tbody name="second" id="second">
|
53
|
+
<tr>
|
54
|
+
<th id="d2" axis="date" scope="rowgroup">April 2008</th>
|
55
|
+
<th></th>
|
56
|
+
<th></th>
|
57
|
+
<th></th>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td id="p3" abbr="Dr. House">Gregory House</td>
|
61
|
+
<td headers="before_tax p3 d2">5 863</td>
|
62
|
+
<td headers="tax p3 d2">1 331</td>
|
63
|
+
<td headers="after_tax p3 d2">4 532</td>
|
64
|
+
</tr>
|
65
|
+
<tr>
|
66
|
+
<td id="p4" abbr="Laurie">Hugh Laurie</td>
|
67
|
+
<td headers="before_tax p4 d2">6 252</td>
|
68
|
+
<td headers="tax p4 d2">1 420</td>
|
69
|
+
<td headers="after_tax p4 d2">4 <span id="cell-child">832</span></td>
|
70
|
+
</tr>
|
71
|
+
</tbody>
|
72
|
+
</table>
|
73
|
+
<h2>Table inside a table</h2>
|
74
|
+
<table border="1" id="outer">
|
75
|
+
<tr id="outer_first">
|
76
|
+
<td>
|
77
|
+
Table 1, Row 1, Cell 1
|
78
|
+
</td>
|
79
|
+
<td>
|
80
|
+
Table 1, Row 1, Cell 2
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr id="outer_second">
|
84
|
+
<td id="t1_r2_c1">
|
85
|
+
Table 1, Row 2, Cell 1
|
86
|
+
</td>
|
87
|
+
<td id="t1_r2_c2">
|
88
|
+
Table 1, Row 2, Cell 2
|
89
|
+
<table border="1" id="inner" onclick="WatirSpec.addMessage('table')">
|
90
|
+
<tr id="inner_first" onclick="WatirSpec.addMessage('tr')">
|
91
|
+
<td id="t2_r1_c1" onclick="WatirSpec.addMessage('td')">
|
92
|
+
Table 2, Row 1, Cell 1
|
93
|
+
</td>
|
94
|
+
<td>
|
95
|
+
Table 2, Row 1, Cell 2
|
96
|
+
</td>
|
97
|
+
</tr>
|
98
|
+
</table>
|
99
|
+
</td>
|
100
|
+
</tr>
|
101
|
+
<tr id="outer_last">
|
102
|
+
<td>
|
103
|
+
Table 1, Row 3, Cell 1
|
104
|
+
</td>
|
105
|
+
<td>
|
106
|
+
Table 1, Row 3, Cell 2
|
107
|
+
</td>
|
108
|
+
</tr>
|
109
|
+
</table>
|
110
|
+
<h2>Colspan</h2>
|
111
|
+
<table border="1" id="colspan">
|
112
|
+
<tr>
|
113
|
+
<td colspan="2" id="colspan_2">Colspan 2</td>
|
114
|
+
</tr>
|
115
|
+
<tr>
|
116
|
+
<td id="no_colspan">No colspan attribute</td>
|
117
|
+
<td>No colspan attribute</td>
|
118
|
+
</tr>
|
119
|
+
</table>
|
120
|
+
</body>
|
121
121
|
</html>
|
@@ -1,19 +1,19 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
-
<html lang='en_gb' xml:lang='en_gb' xmlns='http://www.w3.org/1999/xhtml'>
|
3
|
-
<head>
|
4
|
-
<title>
|
5
|
-
Timeout test
|
6
|
-
</title>
|
7
|
-
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
8
|
-
<script type='text/javascript'>
|
9
|
-
//<![CDATA[
|
10
|
-
function move_on() {
|
11
|
-
window.location = 'non_control_elements.html';
|
12
|
-
}
|
13
|
-
//]]>
|
14
|
-
</script>
|
15
|
-
</head>
|
16
|
-
<body onload='setTimeout(move_on, 500)'>
|
17
|
-
Wait 500ms for the next page.
|
18
|
-
</body>
|
19
|
-
</html>
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html lang='en_gb' xml:lang='en_gb' xmlns='http://www.w3.org/1999/xhtml'>
|
3
|
+
<head>
|
4
|
+
<title>
|
5
|
+
Timeout test
|
6
|
+
</title>
|
7
|
+
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
8
|
+
<script type='text/javascript'>
|
9
|
+
//<![CDATA[
|
10
|
+
function move_on() {
|
11
|
+
window.location = 'non_control_elements.html';
|
12
|
+
}
|
13
|
+
//]]>
|
14
|
+
</script>
|
15
|
+
</head>
|
16
|
+
<body onload='setTimeout(move_on, 500)'>
|
17
|
+
Wait 500ms for the next page.
|
18
|
+
</body>
|
19
|
+
</html>
|
@@ -1,20 +1,20 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta charset="utf-8">
|
5
|
-
<title>Uneven Table</title>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<table border="0" cellspacing="5" cellpadding="5">
|
9
|
-
<tr>
|
10
|
-
<th>Header 1</th>
|
11
|
-
<th>Header 2</th>
|
12
|
-
<th>Header 3</th>
|
13
|
-
</tr>
|
14
|
-
<tr>
|
15
|
-
<td>Data 1</td>
|
16
|
-
<td>Data 2</td>
|
17
|
-
</tr>
|
18
|
-
</table>
|
19
|
-
</body>
|
20
|
-
</html>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>Uneven Table</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<table border="0" cellspacing="5" cellpadding="5">
|
9
|
+
<tr>
|
10
|
+
<th>Header 1</th>
|
11
|
+
<th>Header 2</th>
|
12
|
+
<th>Header 3</th>
|
13
|
+
</tr>
|
14
|
+
<tr>
|
15
|
+
<td>Data 1</td>
|
16
|
+
<td>Data 2</td>
|
17
|
+
</tr>
|
18
|
+
</table>
|
19
|
+
</body>
|
20
|
+
</html>
|
@@ -1,84 +1,84 @@
|
|
1
|
-
<!DOCTYPE HTML>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>wait test</title>
|
5
|
-
<script type="text/javascript" charset="utf-8">
|
6
|
-
|
7
|
-
function setTimeoutAddDisplay(id, current_id, timeout) {
|
8
|
-
setTimeoutAdd(id, "none", id, current_id, timeout);
|
9
|
-
setTimeoutDisplay(id, "block", timeout*2)
|
10
|
-
}
|
11
|
-
|
12
|
-
function setTimeoutDisplay(id, display, timeout) {
|
13
|
-
setTimeout(function() {
|
14
|
-
document.getElementById(id).style.display = display;
|
15
|
-
}, timeout);
|
16
|
-
}
|
17
|
-
|
18
|
-
function setTimeoutAdd(id, display, text, existing_id, timeout) {
|
19
|
-
var newDiv = document.createElement("div");
|
20
|
-
newDiv.setAttribute("id", id);
|
21
|
-
newDiv.style.display = display;
|
22
|
-
newDiv.appendChild(document.createTextNode(text));
|
23
|
-
|
24
|
-
var currentDiv = document.getElementById(existing_id);
|
25
|
-
|
26
|
-
setTimeout(function() {
|
27
|
-
document.body.insertBefore(newDiv, currentDiv);
|
28
|
-
}, timeout);
|
29
|
-
}
|
30
|
-
|
31
|
-
function setTimeoutRemove(id, timeout) {
|
32
|
-
setTimeout(function() {
|
33
|
-
var e = document.getElementById(id);
|
34
|
-
e.parentNode.removeChild(e);
|
35
|
-
}, timeout);
|
36
|
-
}
|
37
|
-
|
38
|
-
function setDisabled(id, disabled, timeout) {
|
39
|
-
setTimeout(function() {
|
40
|
-
document.getElementById(id).disabled = disabled;
|
41
|
-
}, timeout);
|
42
|
-
}
|
43
|
-
|
44
|
-
function changeName(id) {
|
45
|
-
document.getElementById(id).name = 'different';
|
46
|
-
}
|
47
|
-
</script>
|
48
|
-
</head>
|
49
|
-
|
50
|
-
<body>
|
51
|
-
<div id="foo" style="display:block;">foo</div>
|
52
|
-
<div id="bar" style="display:none;" onclick='this.innerHTML = "changed"'>bar</div>
|
53
|
-
<a id="show_bar" href="#" onclick="setTimeoutDisplay('bar', 'block', 500);">show bar</a>
|
54
|
-
<a id="hide_foo" href="#" onclick="setTimeoutDisplay('foo', 'none', 500);">hide foo</a>
|
55
|
-
<a id="remove_foo" href="#" onclick="setTimeoutRemove('foo', 1000);">remove foo</a>
|
56
|
-
<a id="add_foobar" href="#" onclick="setTimeoutAddDisplay('foobar', 'bar', 1000);">add foobar</a>
|
57
|
-
<div id="buttons">
|
58
|
-
<button id="btn" type="button" onclick="setDisabled('btn', true, 0)" disabled>Click To Disable!</button>
|
59
|
-
<a id="enable_btn" href="#" onclick="setDisabled('btn', false, 500);">enable btn</a>
|
60
|
-
<button id="btn2" style="display:none;" type="button" disabled>Hidden and Disabled</button>
|
61
|
-
<a id="show_and_enable_btn" href="#" onclick="setTimeoutDisplay('btn2', 'block', 500); setDisabled('btn2', false, 1000);">
|
62
|
-
show and enable btn
|
63
|
-
</a>
|
64
|
-
</div>
|
65
|
-
<div>
|
66
|
-
<a id="change_select" href="#" onclick="changeName('add_select');">change select list</a>
|
67
|
-
<a id="add_select" name="add_select" href="#" onclick="setTimeoutDisplay('languages', 'block', 500);">show select list</a>
|
68
|
-
</div>
|
69
|
-
<form>
|
70
|
-
<fieldset>
|
71
|
-
<select name="languages" id="languages", style="display: none">
|
72
|
-
<option id="danish" value="1">Danish</option>
|
73
|
-
<option selected="selected" value="2">English</option>
|
74
|
-
<option selected="selected" value="3">Norwegian</option>
|
75
|
-
<option value="4" disabled>Russian</option>
|
76
|
-
<option>Swedish</option>
|
77
|
-
</select> <br />
|
78
|
-
</fieldset>
|
79
|
-
</form>
|
80
|
-
<div id="also_hidden" style="display:none;">
|
81
|
-
<div id="hidden_child">Nothing to see here</div>
|
82
|
-
</div>
|
83
|
-
</body>
|
84
|
-
</html>
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>wait test</title>
|
5
|
+
<script type="text/javascript" charset="utf-8">
|
6
|
+
|
7
|
+
function setTimeoutAddDisplay(id, current_id, timeout) {
|
8
|
+
setTimeoutAdd(id, "none", id, current_id, timeout);
|
9
|
+
setTimeoutDisplay(id, "block", timeout*2)
|
10
|
+
}
|
11
|
+
|
12
|
+
function setTimeoutDisplay(id, display, timeout) {
|
13
|
+
setTimeout(function() {
|
14
|
+
document.getElementById(id).style.display = display;
|
15
|
+
}, timeout);
|
16
|
+
}
|
17
|
+
|
18
|
+
function setTimeoutAdd(id, display, text, existing_id, timeout) {
|
19
|
+
var newDiv = document.createElement("div");
|
20
|
+
newDiv.setAttribute("id", id);
|
21
|
+
newDiv.style.display = display;
|
22
|
+
newDiv.appendChild(document.createTextNode(text));
|
23
|
+
|
24
|
+
var currentDiv = document.getElementById(existing_id);
|
25
|
+
|
26
|
+
setTimeout(function() {
|
27
|
+
document.body.insertBefore(newDiv, currentDiv);
|
28
|
+
}, timeout);
|
29
|
+
}
|
30
|
+
|
31
|
+
function setTimeoutRemove(id, timeout) {
|
32
|
+
setTimeout(function() {
|
33
|
+
var e = document.getElementById(id);
|
34
|
+
e.parentNode.removeChild(e);
|
35
|
+
}, timeout);
|
36
|
+
}
|
37
|
+
|
38
|
+
function setDisabled(id, disabled, timeout) {
|
39
|
+
setTimeout(function() {
|
40
|
+
document.getElementById(id).disabled = disabled;
|
41
|
+
}, timeout);
|
42
|
+
}
|
43
|
+
|
44
|
+
function changeName(id) {
|
45
|
+
document.getElementById(id).name = 'different';
|
46
|
+
}
|
47
|
+
</script>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<div id="foo" style="display:block;">foo</div>
|
52
|
+
<div id="bar" style="display:none;" onclick='this.innerHTML = "changed"'>bar</div>
|
53
|
+
<a id="show_bar" href="#" onclick="setTimeoutDisplay('bar', 'block', 500);">show bar</a>
|
54
|
+
<a id="hide_foo" href="#" onclick="setTimeoutDisplay('foo', 'none', 500);">hide foo</a>
|
55
|
+
<a id="remove_foo" href="#" onclick="setTimeoutRemove('foo', 1000);">remove foo</a>
|
56
|
+
<a id="add_foobar" href="#" onclick="setTimeoutAddDisplay('foobar', 'bar', 1000);">add foobar</a>
|
57
|
+
<div id="buttons">
|
58
|
+
<button id="btn" type="button" onclick="setDisabled('btn', true, 0)" disabled>Click To Disable!</button>
|
59
|
+
<a id="enable_btn" href="#" onclick="setDisabled('btn', false, 500);">enable btn</a>
|
60
|
+
<button id="btn2" style="display:none;" type="button" disabled>Hidden and Disabled</button>
|
61
|
+
<a id="show_and_enable_btn" href="#" onclick="setTimeoutDisplay('btn2', 'block', 500); setDisabled('btn2', false, 1000);">
|
62
|
+
show and enable btn
|
63
|
+
</a>
|
64
|
+
</div>
|
65
|
+
<div>
|
66
|
+
<a id="change_select" href="#" onclick="changeName('add_select');">change select list</a>
|
67
|
+
<a id="add_select" name="add_select" href="#" onclick="setTimeoutDisplay('languages', 'block', 500);">show select list</a>
|
68
|
+
</div>
|
69
|
+
<form>
|
70
|
+
<fieldset>
|
71
|
+
<select name="languages" id="languages", style="display: none">
|
72
|
+
<option id="danish" value="1">Danish</option>
|
73
|
+
<option selected="selected" value="2">English</option>
|
74
|
+
<option selected="selected" value="3">Norwegian</option>
|
75
|
+
<option value="4" disabled>Russian</option>
|
76
|
+
<option>Swedish</option>
|
77
|
+
</select> <br />
|
78
|
+
</fieldset>
|
79
|
+
</form>
|
80
|
+
<div id="also_hidden" style="display:none;">
|
81
|
+
<div id="hidden_child">Nothing to see here</div>
|
82
|
+
</div>
|
83
|
+
</body>
|
84
|
+
</html>
|