class RAutomation::Adapter::MsUia::Radio
Public Instance Methods
exist?()
click to toggle source
Calls superclass method
RAutomation::Adapter::MsUia::Control#exist?
# 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?
set?()
click to toggle source
# File lib/rautomation/adapter/ms_uia/radio.rb, line 14 def set? UiaDll::is_selected(search_information) end