Module: WatirNokogiri::UserEditable
Instance Method Summary collapse
-
#append(*args) ⇒ Object
(also: #<<)
Appends the given value to the text in the text field.
-
#clear ⇒ Object
Clears the text field.
-
#set(*args) ⇒ Object
(also: #value=)
Clear the element, the type in the given value.
Instance Method Details
#append(*args) ⇒ Object Also known as: <<
Appends the given value to the text in the text field.
22 23 24 25 |
# File 'lib/watir-nokogiri/user_editable.rb', line 22 def append(*args) assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |
#clear ⇒ Object
Clears the text field.
32 33 34 35 |
# File 'lib/watir-nokogiri/user_editable.rb', line 32 def clear assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |
#set(*args) ⇒ Object Also known as: value=
Clear the element, the type in the given value.
10 11 12 13 |
# File 'lib/watir-nokogiri/user_editable.rb', line 10 def set(*args) assert_exists raise NotImplementedError, "not currently supported by WatirNokogiri" end |