Sha256: 2eb5b6a8fb6f2917d2aa02fbd2f90594a9b1a978cd64f57096730cb082f42bc2
Contents?: true
Size: 473 Bytes
Versions: 17
Compression:
Stored size: 473 Bytes
Contents
module RAutomation module Adapter module MsUia class Button < Control include WaitHelper include Locators # Default locators used for searching buttons. DEFAULT_LOCATORS = {:class => /button/i} def exist? super && matches_type?(Constants::UIA_BUTTON_CONTROL_TYPE) end alias_method :exists?, :exist? alias_method :value, :control_name end end end end
Version data entries
17 entries across 17 versions & 1 rubygems