module RAutomation::Adapter::MsUia::ButtonHelper

Public Instance Methods

clear() click to toggle source

@todo call a windows function to do this without clicking

# File lib/rautomation/adapter/ms_uia/button_helper.rb, line 7
def clear
  click {!set?} if set?
end
set() click to toggle source

@todo call a windows function to do this without clicking

# File lib/rautomation/adapter/ms_uia/button_helper.rb, line 12
def set
  click {set?} unless set?
end