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
data/lib/watir/row_container.rb
CHANGED
@@ -1,36 +1,36 @@
|
|
1
|
-
module Watir
|
2
|
-
module RowContainer
|
3
|
-
|
4
|
-
#
|
5
|
-
# Returns table row.
|
6
|
-
#
|
7
|
-
|
8
|
-
def row(*args)
|
9
|
-
Row.new(self, extract_selector(args).merge(tag_name: "tr"))
|
10
|
-
end
|
11
|
-
|
12
|
-
#
|
13
|
-
# Returns table rows collection.
|
14
|
-
#
|
15
|
-
|
16
|
-
def rows(*args)
|
17
|
-
RowCollection.new(self, extract_selector(args).merge(tag_name: "tr"))
|
18
|
-
end
|
19
|
-
|
20
|
-
#
|
21
|
-
# The table as a 2D Array of strings with the text of each cell.
|
22
|
-
#
|
23
|
-
# @return [Array<Array<String>>]
|
24
|
-
#
|
25
|
-
|
26
|
-
def strings
|
27
|
-
wait_for_exists
|
28
|
-
|
29
|
-
rows.inject [] do |res, row|
|
30
|
-
res << row.cells.map(&:text)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
alias_method :to_a, :strings
|
34
|
-
|
35
|
-
end # RowContainer
|
36
|
-
end # Watir
|
1
|
+
module Watir
|
2
|
+
module RowContainer
|
3
|
+
|
4
|
+
#
|
5
|
+
# Returns table row.
|
6
|
+
#
|
7
|
+
|
8
|
+
def row(*args)
|
9
|
+
Row.new(self, extract_selector(args).merge(tag_name: "tr"))
|
10
|
+
end
|
11
|
+
|
12
|
+
#
|
13
|
+
# Returns table rows collection.
|
14
|
+
#
|
15
|
+
|
16
|
+
def rows(*args)
|
17
|
+
RowCollection.new(self, extract_selector(args).merge(tag_name: "tr"))
|
18
|
+
end
|
19
|
+
|
20
|
+
#
|
21
|
+
# The table as a 2D Array of strings with the text of each cell.
|
22
|
+
#
|
23
|
+
# @return [Array<Array<String>>]
|
24
|
+
#
|
25
|
+
|
26
|
+
def strings
|
27
|
+
wait_for_exists
|
28
|
+
|
29
|
+
rows.inject [] do |res, row|
|
30
|
+
res << row.cells.map(&:text)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
alias_method :to_a, :strings
|
34
|
+
|
35
|
+
end # RowContainer
|
36
|
+
end # Watir
|
data/lib/watir/screenshot.rb
CHANGED
@@ -1,50 +1,50 @@
|
|
1
|
-
module Watir
|
2
|
-
class Screenshot
|
3
|
-
|
4
|
-
def initialize(driver)
|
5
|
-
@driver = driver
|
6
|
-
end
|
7
|
-
|
8
|
-
#
|
9
|
-
# Saves screenshot to given path.
|
10
|
-
#
|
11
|
-
# @example
|
12
|
-
# browser.screenshot.save "screenshot.png"
|
13
|
-
#
|
14
|
-
# @param [String] path
|
15
|
-
#
|
16
|
-
|
17
|
-
def save(path)
|
18
|
-
@driver.save_screenshot(path)
|
19
|
-
end
|
20
|
-
|
21
|
-
#
|
22
|
-
# Represents screenshot as PNG image string.
|
23
|
-
#
|
24
|
-
# @example
|
25
|
-
# browser.screenshot.png
|
26
|
-
# #=> '\x95\xC7\x8C@1\xC07\x1C(Edb\x15\xB2\vL'
|
27
|
-
#
|
28
|
-
# @return [String]
|
29
|
-
#
|
30
|
-
|
31
|
-
def png
|
32
|
-
@driver.screenshot_as(:png)
|
33
|
-
end
|
34
|
-
|
35
|
-
#
|
36
|
-
# Represents screenshot as Base64 encoded string.
|
37
|
-
#
|
38
|
-
# @example
|
39
|
-
# browser.screenshot.base64
|
40
|
-
# #=> '7HWJ43tZDscPleeUuPW6HhN3x+z7vU/lufmH0qNTtTum94IBWMT46evImci1vnFGT'
|
41
|
-
#
|
42
|
-
# @return [String]
|
43
|
-
#
|
44
|
-
|
45
|
-
def base64
|
46
|
-
@driver.screenshot_as(:base64)
|
47
|
-
end
|
48
|
-
|
49
|
-
end # Screenshot
|
50
|
-
end # Watir
|
1
|
+
module Watir
|
2
|
+
class Screenshot
|
3
|
+
|
4
|
+
def initialize(driver)
|
5
|
+
@driver = driver
|
6
|
+
end
|
7
|
+
|
8
|
+
#
|
9
|
+
# Saves screenshot to given path.
|
10
|
+
#
|
11
|
+
# @example
|
12
|
+
# browser.screenshot.save "screenshot.png"
|
13
|
+
#
|
14
|
+
# @param [String] path
|
15
|
+
#
|
16
|
+
|
17
|
+
def save(path)
|
18
|
+
@driver.save_screenshot(path)
|
19
|
+
end
|
20
|
+
|
21
|
+
#
|
22
|
+
# Represents screenshot as PNG image string.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
# browser.screenshot.png
|
26
|
+
# #=> '\x95\xC7\x8C@1\xC07\x1C(Edb\x15\xB2\vL'
|
27
|
+
#
|
28
|
+
# @return [String]
|
29
|
+
#
|
30
|
+
|
31
|
+
def png
|
32
|
+
@driver.screenshot_as(:png)
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Represents screenshot as Base64 encoded string.
|
37
|
+
#
|
38
|
+
# @example
|
39
|
+
# browser.screenshot.base64
|
40
|
+
# #=> '7HWJ43tZDscPleeUuPW6HhN3x+z7vU/lufmH0qNTtTum94IBWMT46evImci1vnFGT'
|
41
|
+
#
|
42
|
+
# @return [String]
|
43
|
+
#
|
44
|
+
|
45
|
+
def base64
|
46
|
+
@driver.screenshot_as(:base64)
|
47
|
+
end
|
48
|
+
|
49
|
+
end # Screenshot
|
50
|
+
end # Watir
|
data/lib/watir/user_editable.rb
CHANGED
@@ -1,56 +1,56 @@
|
|
1
|
-
module Watir
|
2
|
-
module UserEditable
|
3
|
-
|
4
|
-
#
|
5
|
-
# Clear the element, the type in the given value.
|
6
|
-
#
|
7
|
-
# @param [String, Symbol] args
|
8
|
-
#
|
9
|
-
|
10
|
-
def set(*args)
|
11
|
-
element_call(:wait_for_writable) do
|
12
|
-
@element.clear
|
13
|
-
@element.send_keys(*args)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
alias_method :value=, :set
|
17
|
-
|
18
|
-
#
|
19
|
-
# Uses JavaScript to enter most of the given value.
|
20
|
-
# Selenium is used to enter the first and last characters
|
21
|
-
#
|
22
|
-
# @param [String] input_value
|
23
|
-
#
|
24
|
-
|
25
|
-
def set!(*args)
|
26
|
-
raise ArgumentError, "#set! does not support special keys, use #set instead" if args.any? { |v| v.kind_of?(::Symbol) }
|
27
|
-
input_value = args.join
|
28
|
-
set input_value[0]
|
29
|
-
element_call { execute_js(:setValue, @element, input_value[0..-2]) }
|
30
|
-
append(input_value[-1])
|
31
|
-
raise Watir::Exception::Error, "#set! value does not match expected input" unless value == input_value
|
32
|
-
end
|
33
|
-
|
34
|
-
#
|
35
|
-
# Appends the given value to the text in the text field.
|
36
|
-
#
|
37
|
-
# @param [String, Symbol] args
|
38
|
-
#
|
39
|
-
|
40
|
-
def append(*args)
|
41
|
-
send_keys(*args)
|
42
|
-
end
|
43
|
-
alias_method :<<, :append
|
44
|
-
|
45
|
-
#
|
46
|
-
# Clears the text field.
|
47
|
-
#
|
48
|
-
|
49
|
-
def clear
|
50
|
-
element_call(:wait_for_writable) do
|
51
|
-
@element.clear
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
end # UserEditable
|
56
|
-
end # Watir
|
1
|
+
module Watir
|
2
|
+
module UserEditable
|
3
|
+
|
4
|
+
#
|
5
|
+
# Clear the element, the type in the given value.
|
6
|
+
#
|
7
|
+
# @param [String, Symbol] args
|
8
|
+
#
|
9
|
+
|
10
|
+
def set(*args)
|
11
|
+
element_call(:wait_for_writable) do
|
12
|
+
@element.clear
|
13
|
+
@element.send_keys(*args)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
alias_method :value=, :set
|
17
|
+
|
18
|
+
#
|
19
|
+
# Uses JavaScript to enter most of the given value.
|
20
|
+
# Selenium is used to enter the first and last characters
|
21
|
+
#
|
22
|
+
# @param [String] input_value
|
23
|
+
#
|
24
|
+
|
25
|
+
def set!(*args)
|
26
|
+
raise ArgumentError, "#set! does not support special keys, use #set instead" if args.any? { |v| v.kind_of?(::Symbol) }
|
27
|
+
input_value = args.join
|
28
|
+
set input_value[0]
|
29
|
+
element_call { execute_js(:setValue, @element, input_value[0..-2]) }
|
30
|
+
append(input_value[-1])
|
31
|
+
raise Watir::Exception::Error, "#set! value does not match expected input" unless value == input_value
|
32
|
+
end
|
33
|
+
|
34
|
+
#
|
35
|
+
# Appends the given value to the text in the text field.
|
36
|
+
#
|
37
|
+
# @param [String, Symbol] args
|
38
|
+
#
|
39
|
+
|
40
|
+
def append(*args)
|
41
|
+
send_keys(*args)
|
42
|
+
end
|
43
|
+
alias_method :<<, :append
|
44
|
+
|
45
|
+
#
|
46
|
+
# Clears the text field.
|
47
|
+
#
|
48
|
+
|
49
|
+
def clear
|
50
|
+
element_call(:wait_for_writable) do
|
51
|
+
@element.clear
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
end # UserEditable
|
56
|
+
end # Watir
|
data/lib/watir/wait.rb
CHANGED
@@ -1,200 +1,200 @@
|
|
1
|
-
require 'watir/wait/timer'
|
2
|
-
|
3
|
-
module Watir
|
4
|
-
module Wait
|
5
|
-
|
6
|
-
class TimeoutError < StandardError ; end
|
7
|
-
|
8
|
-
INTERVAL = 0.1
|
9
|
-
|
10
|
-
|
11
|
-
class << self
|
12
|
-
|
13
|
-
#
|
14
|
-
# @!attribute timer
|
15
|
-
# Access Watir timer implementation in use.
|
16
|
-
# @see Timer
|
17
|
-
# @return [#wait]
|
18
|
-
#
|
19
|
-
|
20
|
-
attr_writer :timer
|
21
|
-
|
22
|
-
def timer
|
23
|
-
@timer ||= Timer.new
|
24
|
-
end
|
25
|
-
|
26
|
-
#
|
27
|
-
# Waits until the block evaluates to true or times out.
|
28
|
-
#
|
29
|
-
# @example
|
30
|
-
# Watir::Wait.until { browser.text_field(name: "new_user_first_name").visible? }
|
31
|
-
#
|
32
|
-
# @param [Integer] timeout How long to wait in seconds
|
33
|
-
# @param [String] message Message to raise if timeout is exceeded
|
34
|
-
# @param [Object, NilClass] object Object to evaluate block against
|
35
|
-
# @raise [TimeoutError] if timeout is exceeded
|
36
|
-
#
|
37
|
-
|
38
|
-
def until(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, object: nil)
|
39
|
-
if deprecated_message || deprecated_timeout
|
40
|
-
Watir.logger.deprecate "Using arguments for Wait#until", "keywords"
|
41
|
-
timeout = deprecated_timeout
|
42
|
-
message = deprecated_message
|
43
|
-
end
|
44
|
-
timeout ||= Watir.default_timeout
|
45
|
-
run_with_timer(timeout, interval) do
|
46
|
-
result = yield(object)
|
47
|
-
return result if result
|
48
|
-
end
|
49
|
-
raise TimeoutError, message_for(timeout, message)
|
50
|
-
end
|
51
|
-
|
52
|
-
#
|
53
|
-
# Wait while the block evaluates to true or times out.
|
54
|
-
#
|
55
|
-
# @example
|
56
|
-
# Watir::Wait.while { browser.text_field(name: "abrakadbra").present? }
|
57
|
-
#
|
58
|
-
# @param [Integer] timeout How long to wait in seconds
|
59
|
-
# @param [String] message Message to raise if timeout is exceeded
|
60
|
-
# @param [Object, NilClass] object Object to evaluate block against
|
61
|
-
# @raise [TimeoutError] if timeout is exceeded
|
62
|
-
#
|
63
|
-
|
64
|
-
def while(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, object: nil)
|
65
|
-
if deprecated_message || deprecated_timeout
|
66
|
-
Watir.logger.deprecate "Using arguments for Wait#while", "keywords"
|
67
|
-
timeout = deprecated_timeout
|
68
|
-
message = deprecated_message
|
69
|
-
end
|
70
|
-
timeout ||= Watir.default_timeout
|
71
|
-
run_with_timer(timeout, interval) { return unless yield(object) }
|
72
|
-
raise TimeoutError, message_for(timeout, message)
|
73
|
-
end
|
74
|
-
|
75
|
-
private
|
76
|
-
|
77
|
-
def message_for(timeout, message)
|
78
|
-
err = "timed out after #{timeout} seconds"
|
79
|
-
err << ", #{message}" if message
|
80
|
-
|
81
|
-
err
|
82
|
-
end
|
83
|
-
|
84
|
-
def run_with_timer(timeout, interval, &block)
|
85
|
-
if timeout.zero?
|
86
|
-
block.call
|
87
|
-
else
|
88
|
-
timer.wait(timeout) do
|
89
|
-
block.call
|
90
|
-
sleep interval || INTERVAL
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
end # self
|
96
|
-
end # Wait
|
97
|
-
|
98
|
-
|
99
|
-
module Waitable
|
100
|
-
|
101
|
-
#
|
102
|
-
# Waits until the condition is true.
|
103
|
-
#
|
104
|
-
# @example
|
105
|
-
# browser.wait_until(timeout: 2) do |browser|
|
106
|
-
# browser.windows.size == 1
|
107
|
-
# end
|
108
|
-
#
|
109
|
-
# @example
|
110
|
-
# browser.text_field(name: "new_user_first_name").wait_until(&:present?).click
|
111
|
-
# browser.text_field(name: "new_user_first_name").wait_until(message: 'foo') { |field| field.present? }
|
112
|
-
# browser.text_field(name: "new_user_first_name").wait_until(timeout: 60, &:present?)
|
113
|
-
#
|
114
|
-
# @param [Integer] timeout seconds to wait before timing out
|
115
|
-
# @param [String] message error message for when times out
|
116
|
-
#
|
117
|
-
|
118
|
-
def wait_until(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, &blk)
|
119
|
-
if deprecated_message || deprecated_timeout
|
120
|
-
Watir.logger.deprecate "Using arguments for #wait_until", "keywords"
|
121
|
-
timeout = deprecated_timeout
|
122
|
-
message = deprecated_message
|
123
|
-
end
|
124
|
-
message ||= "waiting for true condition on #{inspect}"
|
125
|
-
Wait.until(timeout: timeout, message: message, interval: interval, object: self, &blk)
|
126
|
-
|
127
|
-
self
|
128
|
-
end
|
129
|
-
|
130
|
-
#
|
131
|
-
# Waits while the condition is true.
|
132
|
-
#
|
133
|
-
# @example
|
134
|
-
# browser.wait_while(timeout: 2) do |browser|
|
135
|
-
# !browser.exists?
|
136
|
-
# end
|
137
|
-
#
|
138
|
-
# @todo add element example
|
139
|
-
#
|
140
|
-
# @param [Integer] timeout seconds to wait before timing out
|
141
|
-
# @param [String] message error message for when times out
|
142
|
-
#
|
143
|
-
|
144
|
-
def wait_while(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, &blk)
|
145
|
-
if deprecated_message || deprecated_timeout
|
146
|
-
Watir.logger.deprecate "Using arguments for #wait_while", "keywords"
|
147
|
-
timeout = deprecated_timeout
|
148
|
-
message = deprecated_message
|
149
|
-
end
|
150
|
-
message ||= "waiting for false condition on #{inspect}"
|
151
|
-
Wait.while(timeout: timeout, message: message, interval: interval, object: self, &blk)
|
152
|
-
|
153
|
-
self
|
154
|
-
end
|
155
|
-
|
156
|
-
#
|
157
|
-
# Waits until the element is present.
|
158
|
-
#
|
159
|
-
# @example
|
160
|
-
# browser.text_field(name: "new_user_first_name").wait_until_present
|
161
|
-
#
|
162
|
-
# @param [Integer] timeout seconds to wait before timing out
|
163
|
-
#
|
164
|
-
# @see Watir::Wait
|
165
|
-
# @see Watir::Element#present?
|
166
|
-
#
|
167
|
-
|
168
|
-
def wait_until_present(deprecated_timeout = nil, timeout: nil, interval: nil)
|
169
|
-
if deprecated_timeout
|
170
|
-
Watir.logger.deprecate "Using arguments for #wait_until_present", "keywords"
|
171
|
-
timeout = deprecated_timeout
|
172
|
-
end
|
173
|
-
wait_until(timeout: timeout, interval: interval, &:present?)
|
174
|
-
end
|
175
|
-
|
176
|
-
#
|
177
|
-
# Waits while the element is present.
|
178
|
-
#
|
179
|
-
# @example
|
180
|
-
# browser.text_field(name: "abrakadbra").wait_while_present
|
181
|
-
#
|
182
|
-
# @param [Integer] timeout seconds to wait before timing out
|
183
|
-
#
|
184
|
-
# @see Watir::Wait
|
185
|
-
# @see Watir::Element#present?
|
186
|
-
#
|
187
|
-
|
188
|
-
def wait_while_present(deprecated_timeout = nil, timeout: nil)
|
189
|
-
if deprecated_timeout
|
190
|
-
Watir.logger.deprecate "Using arguments for #wait_while_present", "keywords"
|
191
|
-
timeout = deprecated_timeout
|
192
|
-
end
|
193
|
-
wait_while(timeout: timeout) do
|
194
|
-
self.reset! if self.is_a? Watir::Element
|
195
|
-
self.present?
|
196
|
-
end
|
197
|
-
end
|
198
|
-
|
199
|
-
end # Waitable
|
200
|
-
end # Watir
|
1
|
+
require 'watir/wait/timer'
|
2
|
+
|
3
|
+
module Watir
|
4
|
+
module Wait
|
5
|
+
|
6
|
+
class TimeoutError < StandardError ; end
|
7
|
+
|
8
|
+
INTERVAL = 0.1
|
9
|
+
|
10
|
+
|
11
|
+
class << self
|
12
|
+
|
13
|
+
#
|
14
|
+
# @!attribute timer
|
15
|
+
# Access Watir timer implementation in use.
|
16
|
+
# @see Timer
|
17
|
+
# @return [#wait]
|
18
|
+
#
|
19
|
+
|
20
|
+
attr_writer :timer
|
21
|
+
|
22
|
+
def timer
|
23
|
+
@timer ||= Timer.new
|
24
|
+
end
|
25
|
+
|
26
|
+
#
|
27
|
+
# Waits until the block evaluates to true or times out.
|
28
|
+
#
|
29
|
+
# @example
|
30
|
+
# Watir::Wait.until { browser.text_field(name: "new_user_first_name").visible? }
|
31
|
+
#
|
32
|
+
# @param [Integer] timeout How long to wait in seconds
|
33
|
+
# @param [String] message Message to raise if timeout is exceeded
|
34
|
+
# @param [Object, NilClass] object Object to evaluate block against
|
35
|
+
# @raise [TimeoutError] if timeout is exceeded
|
36
|
+
#
|
37
|
+
|
38
|
+
def until(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, object: nil)
|
39
|
+
if deprecated_message || deprecated_timeout
|
40
|
+
Watir.logger.deprecate "Using arguments for Wait#until", "keywords"
|
41
|
+
timeout = deprecated_timeout
|
42
|
+
message = deprecated_message
|
43
|
+
end
|
44
|
+
timeout ||= Watir.default_timeout
|
45
|
+
run_with_timer(timeout, interval) do
|
46
|
+
result = yield(object)
|
47
|
+
return result if result
|
48
|
+
end
|
49
|
+
raise TimeoutError, message_for(timeout, message)
|
50
|
+
end
|
51
|
+
|
52
|
+
#
|
53
|
+
# Wait while the block evaluates to true or times out.
|
54
|
+
#
|
55
|
+
# @example
|
56
|
+
# Watir::Wait.while { browser.text_field(name: "abrakadbra").present? }
|
57
|
+
#
|
58
|
+
# @param [Integer] timeout How long to wait in seconds
|
59
|
+
# @param [String] message Message to raise if timeout is exceeded
|
60
|
+
# @param [Object, NilClass] object Object to evaluate block against
|
61
|
+
# @raise [TimeoutError] if timeout is exceeded
|
62
|
+
#
|
63
|
+
|
64
|
+
def while(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, object: nil)
|
65
|
+
if deprecated_message || deprecated_timeout
|
66
|
+
Watir.logger.deprecate "Using arguments for Wait#while", "keywords"
|
67
|
+
timeout = deprecated_timeout
|
68
|
+
message = deprecated_message
|
69
|
+
end
|
70
|
+
timeout ||= Watir.default_timeout
|
71
|
+
run_with_timer(timeout, interval) { return unless yield(object) }
|
72
|
+
raise TimeoutError, message_for(timeout, message)
|
73
|
+
end
|
74
|
+
|
75
|
+
private
|
76
|
+
|
77
|
+
def message_for(timeout, message)
|
78
|
+
err = "timed out after #{timeout} seconds"
|
79
|
+
err << ", #{message}" if message
|
80
|
+
|
81
|
+
err
|
82
|
+
end
|
83
|
+
|
84
|
+
def run_with_timer(timeout, interval, &block)
|
85
|
+
if timeout.zero?
|
86
|
+
block.call
|
87
|
+
else
|
88
|
+
timer.wait(timeout) do
|
89
|
+
block.call
|
90
|
+
sleep interval || INTERVAL
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
end # self
|
96
|
+
end # Wait
|
97
|
+
|
98
|
+
|
99
|
+
module Waitable
|
100
|
+
|
101
|
+
#
|
102
|
+
# Waits until the condition is true.
|
103
|
+
#
|
104
|
+
# @example
|
105
|
+
# browser.wait_until(timeout: 2) do |browser|
|
106
|
+
# browser.windows.size == 1
|
107
|
+
# end
|
108
|
+
#
|
109
|
+
# @example
|
110
|
+
# browser.text_field(name: "new_user_first_name").wait_until(&:present?).click
|
111
|
+
# browser.text_field(name: "new_user_first_name").wait_until(message: 'foo') { |field| field.present? }
|
112
|
+
# browser.text_field(name: "new_user_first_name").wait_until(timeout: 60, &:present?)
|
113
|
+
#
|
114
|
+
# @param [Integer] timeout seconds to wait before timing out
|
115
|
+
# @param [String] message error message for when times out
|
116
|
+
#
|
117
|
+
|
118
|
+
def wait_until(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, &blk)
|
119
|
+
if deprecated_message || deprecated_timeout
|
120
|
+
Watir.logger.deprecate "Using arguments for #wait_until", "keywords"
|
121
|
+
timeout = deprecated_timeout
|
122
|
+
message = deprecated_message
|
123
|
+
end
|
124
|
+
message ||= "waiting for true condition on #{inspect}"
|
125
|
+
Wait.until(timeout: timeout, message: message, interval: interval, object: self, &blk)
|
126
|
+
|
127
|
+
self
|
128
|
+
end
|
129
|
+
|
130
|
+
#
|
131
|
+
# Waits while the condition is true.
|
132
|
+
#
|
133
|
+
# @example
|
134
|
+
# browser.wait_while(timeout: 2) do |browser|
|
135
|
+
# !browser.exists?
|
136
|
+
# end
|
137
|
+
#
|
138
|
+
# @todo add element example
|
139
|
+
#
|
140
|
+
# @param [Integer] timeout seconds to wait before timing out
|
141
|
+
# @param [String] message error message for when times out
|
142
|
+
#
|
143
|
+
|
144
|
+
def wait_while(deprecated_timeout = nil, deprecated_message = nil, timeout: nil, message: nil, interval: nil, &blk)
|
145
|
+
if deprecated_message || deprecated_timeout
|
146
|
+
Watir.logger.deprecate "Using arguments for #wait_while", "keywords"
|
147
|
+
timeout = deprecated_timeout
|
148
|
+
message = deprecated_message
|
149
|
+
end
|
150
|
+
message ||= "waiting for false condition on #{inspect}"
|
151
|
+
Wait.while(timeout: timeout, message: message, interval: interval, object: self, &blk)
|
152
|
+
|
153
|
+
self
|
154
|
+
end
|
155
|
+
|
156
|
+
#
|
157
|
+
# Waits until the element is present.
|
158
|
+
#
|
159
|
+
# @example
|
160
|
+
# browser.text_field(name: "new_user_first_name").wait_until_present
|
161
|
+
#
|
162
|
+
# @param [Integer] timeout seconds to wait before timing out
|
163
|
+
#
|
164
|
+
# @see Watir::Wait
|
165
|
+
# @see Watir::Element#present?
|
166
|
+
#
|
167
|
+
|
168
|
+
def wait_until_present(deprecated_timeout = nil, timeout: nil, interval: nil)
|
169
|
+
if deprecated_timeout
|
170
|
+
Watir.logger.deprecate "Using arguments for #wait_until_present", "keywords"
|
171
|
+
timeout = deprecated_timeout
|
172
|
+
end
|
173
|
+
wait_until(timeout: timeout, interval: interval, &:present?)
|
174
|
+
end
|
175
|
+
|
176
|
+
#
|
177
|
+
# Waits while the element is present.
|
178
|
+
#
|
179
|
+
# @example
|
180
|
+
# browser.text_field(name: "abrakadbra").wait_while_present
|
181
|
+
#
|
182
|
+
# @param [Integer] timeout seconds to wait before timing out
|
183
|
+
#
|
184
|
+
# @see Watir::Wait
|
185
|
+
# @see Watir::Element#present?
|
186
|
+
#
|
187
|
+
|
188
|
+
def wait_while_present(deprecated_timeout = nil, timeout: nil)
|
189
|
+
if deprecated_timeout
|
190
|
+
Watir.logger.deprecate "Using arguments for #wait_while_present", "keywords"
|
191
|
+
timeout = deprecated_timeout
|
192
|
+
end
|
193
|
+
wait_while(timeout: timeout) do
|
194
|
+
self.reset! if self.is_a? Watir::Element
|
195
|
+
self.present?
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
end # Waitable
|
200
|
+
end # Watir
|