Sha256: ff7710df0cee670eb9bf00da299a1cdd9440830e702730ede07685c1f1a88bf4
Contents?: true
Size: 586 Bytes
Versions: 6
Compression:
Stored size: 586 Bytes
Contents
module RAutomation module Adapter module MsUia module ButtonHelper #todo - replace with UIA version def set? control_hwnd = Functions.control_hwnd(@window.hwnd, @locators) Functions.control_set? control_hwnd end # @todo call a windows function to do this without clicking def clear click {!set?} if set? end # @todo call a windows function to do this without clicking def set click {set?} unless set? end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems