Method: AX::Element#actions

Defined in:
lib/ax/element.rb

#actionsArray<Symbol>

List of available actions.

Examples:


toolbar.actions # => []
button.actions  # => [:press]
menu.actions    # => [:open, :cancel]

Returns:



207
208
209
# File 'lib/ax/element.rb', line 207

def actions
  @actions ||= TRANSLATOR.rubyize @ref.actions
end