class RAutomation::Adapter::MsUia::ListItem

Public Instance Methods

exist?() click to toggle source
# File lib/rautomation/adapter/ms_uia/list_item.rb, line 8
def exist?
  super && matches_type?(Constants::UIA_LIST_ITEM_CONTROL_TYPE)
end
Also aliased as: exists?
exists?()
Alias for: exist?
selected?() click to toggle source
# File lib/rautomation/adapter/ms_uia/list_item.rb, line 12
def selected?
  UiaDll::is_selected(search_information)
end