class FireWatir::Radio

Description:

Class for RadioButton element.

Public Class Methods

new(*args) click to toggle source
# File lib/firewatir/elements/radio_check_common.rb, line 98
def initialize *args
  super
  @type = ["radio"]
end

Public Instance Methods

clear() click to toggle source
# File lib/firewatir/elements/radio_check_common.rb, line 103
def clear
  assert_exists
  assert_enabled
  #higlight(:set)

  @o.checked = false
  #highlight(:clear)

end