class RAutomation::Adapter::MsUia::Radio

Public Instance Methods

exist?() click to toggle source
# File lib/rautomation/adapter/ms_uia/radio.rb, line 10
def exist?
  super && matches_type?(Constants::UIA_RADIO_BUTTON_CONTROL_TYPE)
end
Also aliased as: exists?
exists?()
Alias for: exist?
set?() click to toggle source
# File lib/rautomation/adapter/ms_uia/radio.rb, line 14
def set?
  UiaDll::is_selected(search_information)
end