Class: WatirNokogiri::Select
- Inherits:
-
HTMLElement
- Object
- Element
- HTMLElement
- WatirNokogiri::Select
- Includes:
- Exception
- Defined in:
- lib/watir-nokogiri/elements/select.rb,
lib/watir-nokogiri/elements/generated.rb
Constant Summary
Constants included from AttributeHelper
AttributeHelper::IGNORED_ATTRIBUTES
Instance Method Summary collapse
-
#clear ⇒ Object
Clears all selected options.
-
#enabled? ⇒ Boolean
Returns true if this element is enabled.
-
#include?(str_or_rx) ⇒ Boolean
Returns true if the select list has one or more options where text or label matches the given value.
-
#options ⇒ Watir::OptionCollection
Gets all the options in the select list.
-
#select(str_or_rx) ⇒ String
Select the option(s) whose text or label matches the given string.
-
#select_value(str_or_rx) ⇒ String
Selects the option(s) whose value attribute matches the given string.
-
#selected?(str_or_rx) ⇒ Boolean
Returns true if any of the selected options’ text or label matches the given value.
-
#selected_options ⇒ Array<Watir::Option>
Returns an array of currently selected options.
-
#value ⇒ String?
Returns the value of the first selected option in the select list.
Methods inherited from Element
#==, #attribute_value, #click, #css_path, #document, #driver, #exists?, #html, #id, #initialize, #inspect, #nokogiri, #parent, #present?, #style, #tag_name, #text, #to_subtype, #visible?, #xpath
Methods included from AttributeHelper
#attribute_list, #attributes, #typed_attributes
Methods included from Container
#a, #abbr, #abbrs, #address, #addresses, #area, #areas, #article, #articles, #as, #aside, #asides, #audio, #audios, #b, #base, #bases, #bdi, #bdis, #bdo, #bdos, #blockquote, #blockquotes, #body, #bodys, #br, #brs, #bs, #button, #buttons, #canvas, #canvases, #caption, #captions, #checkbox, #checkboxes, #cite, #cites, #code, #codes, #col, #colgroup, #colgroups, #cols, #command, #commands, #data, #datalist, #datalists, #datas, #dd, #dds, #del, #dels, #details, #detailses, #dfn, #dfns, #dialog, #dialogs, #div, #divs, #dl, #dls, #dt, #dts, #element, #elements, #em, #embed, #embeds, #ems, #extract_selector, #field_set, #field_sets, #fieldset, #fieldsets, #figcaption, #figcaptions, #figure, #figures, #file_field, #file_fields, #font, #fonts, #footer, #footers, #form, #forms, #frame, #frames, #frameset, #framesets, #h1, #h1s, #h2, #h2s, #h3, #h3s, #h4, #h4s, #h5, #h5s, #h6, #h6s, #head, #header, #headers, #heads, #hgroup, #hgroups, #hidden, #hiddens, #hr, #hrs, #html, #htmls, #i, #iframe, #iframes, #image, #images, #img, #imgs, #input, #inputs, #ins, #inses, #is, #kbd, #kbds, #keygen, #keygens, #label, #labels, #legend, #legends, #li, #link, #links, #lis, #map, #maps, #mark, #marks, #menu, #menus, #meta, #metas, #meter, #meters, #nav, #navs, #noscript, #noscripts, #object, #objects, #ol, #ols, #optgroup, #optgroups, #option, #output, #outputs, #p, #param, #params, #pre, #pres, #progress, #progresses, #ps, #q, #qs, #radio, #radios, #rp, #rps, #rt, #rts, #rubies, #ruby, #s, #samp, #samps, #script, #scripts, #section, #sections, #select_list, #select_lists, #selects, #small, #smalls, #source, #sources, #span, #spans, #ss, #strong, #strongs, #style, #styles, #sub, #subs, #summaries, #summary, #sup, #sups, #table, #tables, #tbody, #tbodys, #td, #tds, #text_field, #text_fields, #textarea, #textareas, #tfoot, #tfoots, #th, #thead, #theads, #ths, #time, #times, #title, #titles, #tr, #track, #tracks, #trs, #u, #ul, #uls, #us, #var, #vars, #video, #videos, #wbr, #wbrs
Constructor Details
This class inherits a constructor from WatirNokogiri::Element
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class WatirNokogiri::Element
Instance Method Details
#clear ⇒ Object
Clears all selected options.
20 21 22 23 |
# File 'lib/watir-nokogiri/elements/select.rb', line 20 def clear assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |
#enabled? ⇒ Boolean
Returns true if this element is enabled
12 13 14 |
# File 'lib/watir-nokogiri/elements/select.rb', line 12 def enabled? !disabled? end |
#include?(str_or_rx) ⇒ Boolean
Returns true if the select list has one or more options where text or label matches the given value.
43 44 45 46 47 |
# File 'lib/watir-nokogiri/elements/select.rb', line 43 def include?(str_or_rx) assert_exists # TODO: optimize similar to selected? .any? { |e| str_or_rx === e.text } end |
#options ⇒ Watir::OptionCollection
Gets all the options in the select list
31 32 33 34 |
# File 'lib/watir-nokogiri/elements/select.rb', line 31 def assert_exists super end |
#select(str_or_rx) ⇒ String
Select the option(s) whose text or label matches the given string. If this is a multi-select and several options match the value given, all will be selected.
58 59 60 61 |
# File 'lib/watir-nokogiri/elements/select.rb', line 58 def select(str_or_rx) assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |
#select_value(str_or_rx) ⇒ String
Selects the option(s) whose value attribute matches the given string.
73 74 75 76 |
# File 'lib/watir-nokogiri/elements/select.rb', line 73 def select_value(str_or_rx) assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |
#selected?(str_or_rx) ⇒ Boolean
Returns true if any of the selected options’ text or label matches the given value.
86 87 88 89 90 91 92 93 94 95 |
# File 'lib/watir-nokogiri/elements/select.rb', line 86 def selected?(str_or_rx) assert_exists matches = .select { |e| str_or_rx === e.text || str_or_rx === e.attribute_value(:label) } if matches.empty? raise UnknownObjectException, "Unable to locate option matching #{str_or_rx.inspect}" end matches.any? { |e| e.selected? } end |
#selected_options ⇒ Array<Watir::Option>
Returns an array of currently selected options.
115 116 117 118 |
# File 'lib/watir-nokogiri/elements/select.rb', line 115 def assert_exists .select { |e| e.selected? } end |
#value ⇒ String?
Returns the value of the first selected option in the select list. Returns nil if no option is selected.
104 105 106 107 |
# File 'lib/watir-nokogiri/elements/select.rb', line 104 def value o = .find { |e| e.selected? } || return o.value end |