watir/camel_case.rb in watir-1.4.1 vs watir/camel_case.rb in watir-1.5.2
- old
+ new
@@ -1,9 +1,9 @@
# These are provided for backwards compatability with Watir 1.1
module Watir
- module SupportsSubElements
+ module Container
alias waitForIE wait
alias fileField file_field
alias textField text_field
alias selectBox select_list
alias checkBox checkbox
@@ -19,19 +19,28 @@
alias showForms show_forms
alias showImages show_images
alias showLinks show_links
alias showActive show_active
alias showAllObjects show_all_objects
+ def getIE; @ie; end
+
end
+ class Element
+ alias getOLEObject ole_object
+ alias fireEvent fire_event
+ alias innerText text
+ alias afterText after_text
+ alias beforeText before_text
+ end
class Frame
alias getDocument document
alias waitForIE wait
end
class Form
alias waitForIE wait
end
-
- class SpanDivCommon
- alias innerText text
+ class TextField
+ alias readOnly? :readonly?
+ alias getContents value
+ alias maxLength maxlength
end
-
end
\ No newline at end of file