Sha256: 8d73251a7a98cd80a84313fa0ad2f63c63d59f5da709dd2ef893dd42f538f3f7
Contents?: true
Size: 544 Bytes
Versions: 23
Compression:
Stored size: 544 Bytes
Contents
module RAutomation module Adapter module Win32 module ButtonHelper 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
23 entries across 23 versions & 1 rubygems