lib/watir/elements/select.rb in watir-6.12.0 vs lib/watir/elements/select.rb in watir-6.13.0
- old
+ new
@@ -12,15 +12,16 @@
selected_options.each(&:click)
end
#
# Gets all the options in the select list
+ # Use Element#options rather than Select element attribute "options"
#
# @return [Watir::OptionCollection]
#
def options(*)
- element_call(:wait_for_present) { super }
+ super
end
#
# Returns true if the select list has one or more options where text or label matches the given value.
#