docs » hs.axuielement

This module allows you to access the accessibility objects of running applications, their windows, menus, and other user interface elements that support the OS X accessibility API.

This module works through the use of axuielementObjects, which is the Hammerspoon representation for an accessibility object. An accessibility object represents any object or component of an OS X application which can be manipulated through the OS X Accessibility API -- it can be an application, a window, a button, selected text, etc. As such, it can only support those features and objects within an application that the application developers make available through the Accessibility API.

In addition to the formal methods described in this documentation, dynamic methods exist for accessing element attributes and actions. These will differ somewhat between objects as the specific attributes and actions will depend upon the accessibility object's role and purpose, but the following outlines the basics.

Getting and Setting Attribute values:

Iteration over Attributes:

Iteration over Child Elements (AXChildren):

Actions (hs.axuielement:actionNames):

ParameterizedAttributes:

Submodules

API Overview

API Documentation

Constants

actions
Signature hs.axuielement.actions[]
Type Constant
Description

A table of common accessibility object action names, provided for reference.

Notes
  • this table is provided for reference only and is not intended to be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.actions
Source extensions/axuielement/libaxuielement.m line 966
attributes
Signature hs.axuielement.attributes[]
Type Constant
Description

A table of common accessibility object attribute names which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as keys in the match criteria argument.

Notes
  • This table is provided for reference only and is not intended to be comprehensive.
  • You can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.attributes
Source extensions/axuielement/libaxuielement.m line 743
orientations
Signature hs.axuielement.orientations[]
Type Constant
Description

A table of orientation types which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for "AXOrientation" in the match criteria argument.

Notes
  • this table is provided for reference only and may not be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.orientations
Source extensions/axuielement/libaxuielement.m line 1127
parameterizedAttributes
Signature hs.axuielement.parameterizedAttributes[]
Type Constant
Description

A table of common accessibility object parameterized attribute names, provided for reference.

Notes
  • this table is provided for reference only and is not intended to be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.parameterizedAttributes
  • Parameterized attributes are attributes that take an argument when querying the element. There is very little documentation available for most of these and application developers can implement their own for which we may never be able to get any documentation. This table contains parameterized attribute names that are defined within the Apple documentation and a few others that have been discovered.
  • Documentation covering what has been discovered through experimentation about parameterized attributes is planned and should be added to the Hammerspoon wiki shortly after this module becomes part of a formal release.
Source extensions/axuielement/libaxuielement.m line 926
roles
Signature hs.axuielement.roles[]
Type Constant
Description

A table of common accessibility object roles which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for "AXRole" in the match criteria argument.

Notes
  • this table is provided for reference only and is not intended to be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.roles
Source extensions/axuielement/libaxuielement.m line 990
rulerMarkers
Signature hs.axuielement.rulerMarkers[]
Type Constant
Description

A table of ruler marker types which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for "AXMarkerType" in the match criteria argument.

Notes
  • this table is provided for reference only and may not be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.rulerMarkers
Source extensions/axuielement/libaxuielement.m line 1159
sortDirections
Signature hs.axuielement.sortDirections[]
Type Constant
Description

A table of sort direction types which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for "AXSortDirection" in the match criteria argument.

Notes
  • this table is provided for reference only and may not be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.sortDirections
Source extensions/axuielement/libaxuielement.m line 1143
subroles
Signature hs.axuielement.subroles[]
Type Constant
Description

A table of common accessibility object subroles which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for "AXSubrole" in the match criteria argument.

Notes
  • this table is provided for reference only and is not intended to be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.subroles
Source extensions/axuielement/libaxuielement.m line 1067
units
Signature hs.axuielement.units[]
Type Constant
Description

A table of measurement unit types which may be used with hs.axuielement:elementSearch or hs.axuielement:matchesCriteria as attribute values for attributes which specify measurement unit types (e.g. "AXUnits", "AXHorizontalUnits", and "AXVerticalUnits") in the match criteria argument.

Notes
  • this table is provided for reference only and may not be comprehensive.
  • you can view the contents of this table from the Hammerspoon console by typing in hs.axuielement.units
Source extensions/axuielement/libaxuielement.m line 1180

Functions

searchCriteriaFunction
Signature hs.axuielement.searchCriteriaFunction(criteria) -> function
Type Function
Description

Returns a function for use with hs.axuielement:elementSearch that uses hs.axuielement:matchesCriteria with the specified criteria.

Parameters
Returns
Source extensions/axuielement/axuielement.lua line 464

Constructors

applicationElement
Signature hs.axuielement.applicationElement(applicationObject) -> axuielementObject
Type Constructor
Description

Returns the top-level accessibility object for the application specified by the hs.application object.

Parameters
  • applicationObject - the hs.application object for the Application or a string or number which will be passed to hs.application.find to get an hs.application object.
Returns
  • an axuielementObject for the application specified
Notes
  • if applicationObject is a string or number, only the first item found with hs.application.find will be used by this function to create an axuielementObject.
Source extensions/axuielement/libaxuielement.m line 98
applicationElementForPID
Signature hs.axuielement.applicationElementForPID(pid) -> axuielementObject
Type Constructor
Description

Returns the top-level accessibility object for the application with the specified process ID.

Parameters
  • pid - the process ID of the application.
Returns
  • an axuielementObject for the application specified, or nil if it cannot be determined
Source extensions/axuielement/libaxuielement.m line 144
systemElementAtPosition
Signature hs.axuielement.systemElementAtPosition(x, y | pointTable) -> axuielementObject
Type Constructor
Description

Returns the accessibility object at the specified position on the screen. The top-left corner of the primary screen is 0, 0.

Parameters
  • x - the x coordinate of the screen location to test. If this parameter is provided, then the y parameter must also be provided and the pointTable parameter must not be provided.
  • y - the y coordinate of the screen location to test. This parameter is required if the x parameter is provided.
  • pointTable - the x and y coordinates of the screen location to test provided as a point-table, like the one returned by hs.mouse.getAbsolutePosition (a point-table is a table with key-value pairs for keys x and y). If this parameter is provided, then separate x and y parameters must not also be present.
Returns
  • an axuielementObject for the object at the specified coordinates, or nil if no object could be identified.
Notes
  • See also hs.axuielement:elementAtPosition -- this function is a shortcut for hs.axuielement.systemWideElement():elementAtPosition(...).
  • This function does hit-testing based on window z-order (that is, layering). If one window is on top of another window, the returned accessibility object comes from whichever window is topmost at the specified location.
Source extensions/axuielement/axuielement.lua line 86
systemWideElement
Signature hs.axuielement.systemWideElement() -> axuielementObject
Type Constructor
Description

Returns an accessibility object that provides access to system attributes.

Parameters
  • None
Returns
  • the axuielementObject for the system attributes
Source extensions/axuielement/libaxuielement.m line 126
windowElement
Signature hs.axuielement.windowElement(windowObject) -> axuielementObject
Type Constructor
Description

Returns the accessibility object for the window specified by the hs.window object.

Parameters
  • windowObject - the hs.window object for the window or a string or number which will be passed to hs.window.find to get an hs.window object.
Returns
  • an axuielementObject for the window specified
Notes
  • if windowObject is a string or number, only the first item found with hs.window.find will be used by this function to create an axuielementObject.
Source extensions/axuielement/libaxuielement.m line 70

Methods

actionDescription
Signature hs.axuielement:actionDescription(action) -> string | nil, errString
Type Method
Description

Returns a localized description of the specified accessibility object's action.

Parameters
Returns
  • a string containing a description of the object's action, nil if no description is available, or nil and an error string if an accessibility error occurred
Notes
  • The action descriptions are provided by the target application; as such their accuracy and usefulness rely on the target application's developers.
Source extensions/axuielement/libaxuielement.m line 254
actionNames
Signature hs.axuielement:actionNames() -> table | nil, errString
Type Method
Description

Returns a list of all the actions the specified accessibility object can perform.

Parameters
  • None
Returns
  • an array of the names of all actions supported by the axuielementObject or nil and an error string if an accessibility error occurred
Notes
  • Common action names can be found in the hs.axuielement.actions table; however, this method will list only those names which are supported by this object, and is not limited to just those in the referenced table.
Source extensions/axuielement/libaxuielement.m line 221
allAttributeValues
Signature hs.axuielement:allAttributeValues([includeErrors]) -> table | nil, errString
Type Method
Description

Returns a table containing key-value pairs for all attributes of the accessibility object.

Parameters
  • includeErrors - an optional boolean, default false, that specifies whether attribute names which generate an error when retrieved are included in the returned results.
Returns
  • a table with key-value pairs corresponding to the attributes of the accessibility object or nil and an error string if an accessibility error occurred
Notes
  • if includeErrors is not specified or is false, then attributes which exist for the element, but currently have no value assigned, will not appear in the table. This is because Lua treats a nil value for a table's key-value pair as an instruction to remove the key from the table, if it currently exists.
  • To include attributes which exist but are currently unset, you need to specify includeErrors as true.
    • attributes for which no value is currently assigned will be given a table value with the following key-value pairs:
      • _code = -25212
      • error = "Requested value does not exist"
Source extensions/axuielement/libaxuielement.m line 315
allDescendantElements
Signature hs.axuielement:allDescendantElements(callback, [withParents]) -> elementSearchObject
Type Method
Description

Query the accessibility object for all child accessibility objects and their descendants

Parameters
  • callback - a required function which should expect two arguments: a msg string specifying how the search ended, and a table containing the discovered descendant elements. msg will be "completed" when the traversal has completed normally and will contain a string starting with "**" if it terminates early for some reason (see Notes: section for more information)
  • withParents - an optional boolean, default false, indicating that the parent of objects (and their descendants) should be collected as well.
Returns
Notes
  • This method is syntactic sugar for hs.axuielement:elementSearch(callback, { [includeParents = withParents] }). Please refer to hs.axuielement:elementSearch for details about the returned object and callback arguments.
Source extensions/axuielement/axuielement.lua line 502
asHSApplication
Signature hs.axuielement:asHSApplication() -> hs.application object | nil
Type Method
Description

If the element refers to an application, return an hs.application object for the element.

Parameters
  • None
Returns
  • if the element refers to an application, return an hs.application object for the element ; otherwise return nil
Notes
  • An element is considered an application by this method if it has an AXRole of AXApplication and has a process identifier (pid).
Source extensions/axuielement/libaxuielement.m line 645
asHSWindow
Signature hs.axuielement:asHSWindow() -> hs.window object | nil
Type Method
Description

If the element refers to a window, return an hs.window object for the element.

Parameters
  • None
Returns
  • if the element refers to a window, return an hs.window object for the element ; otherwise return nil
Notes
  • An element is considered a window by this method if it has an AXRole of AXWindow.
Source extensions/axuielement/libaxuielement.m line 680
attributeNames
Signature hs.axuielement:attributeNames() -> table | nil, errString
Type Method
Description

Returns a list of all the attributes supported by the specified accessibility object.

Parameters
  • None
Returns
  • an array of the names of all attributes supported by the axuielementObject or nil and an error string if an accessibility error occurred
Notes
  • Common attribute names can be found in the hs.axuielement.attributes tables; however, this method will list only those names which are supported by this object, and is not limited to just those in the referenced table.
Source extensions/axuielement/libaxuielement.m line 188
attributeValue
Signature hs.axuielement:attributeValue(attribute) -> value | nil, errString
Type Method
Description

Returns the value of an accessibility object's attribute.

Parameters
Returns
  • the current value of the attribute, nil if the attribute has no value, or nil and an error string if an accessibility error occurred
Source extensions/axuielement/libaxuielement.m line 286
attributeValueCount
Signature hs.axuielement:attributeValueCount(attribute) -> integer | nil, errString
Type Method
Description

Returns the count of the array of an accessibility object's attribute value.

Parameters
Returns
  • the number of items in the value for the attribute, if it is an array, or nil and an error string if an accessibility error occurred
Source extensions/axuielement/libaxuielement.m line 365
buildTree
Signature hs.axuielement:buildTree(callback, [depth], [withParents]) -> elementSearchObject
Type Method
Description

Captures all of the available information for the accessibility object and its descendants and returns it in a table for inspection.

Parameters
  • callback - a required function which should expect two arguments: a msg string specifying how the search ended, and a table containing the recorded information. msg will be "completed" when the search has completed normally (or reached the specified depth) and will contain a string starting with "**" if it terminates early for some reason (see Notes: section for more information)
  • depth - an optional integer, default math.huge, specifying the maximum depth from the initial accessibility object that should be visited to identify descendant elements and their attributes.
  • withParents - an optional boolean, default false, specifying whether or not an element's (or descendant's) attributes for AXParent and AXTopLevelUIElement should also be visited when identifying additional elements to include in the results table.
Returns
Notes
  • The format of the results table passed to the callback for this method is primarily for debugging and exploratory purposes and may not be arranged for easy programatic evaluation.
  • This method is syntactic sugar for hs.axuielement:elementSearch(callback, { objectOnly = false, asTree = true, [depth = depth], [includeParents = withParents] }). Please refer to hs.axuielement:elementSearch for details about the returned object and callback arguments.
Source extensions/axuielement/axuielement.lua line 478
childrenWithRole
Signature hs.axuielement:childrenWithRole(role) -> table
Type Method
Description

Returns a table containing only those immediate children of the element that perform the specified role.

Parameters
  • role - a string specifying the role that the returned children must perform. Example values can be found in hs.axuielement.roles.
Returns
  • a table containing zero or more axuielementObjects.
Notes
  • only the immediate children of the object are searched.
Source extensions/axuielement/axuielement.lua line 972
copy
Signature hs.axuielement:copy() -> axuielementObject
Type Method
Description

Return a duplicate userdata reference to the Accessibility object.

Parameters
  • None
Returns
  • a new userdata object representing a new reference to the Accessibility object.
Source extensions/axuielement/libaxuielement.m line 171
elementAtPosition
Signature hs.axuielement:elementAtPosition(x, y | pointTable) -> axuielementObject | nil, errString
Type Method
Description

Returns the accessibility object at the specified position on the screen. The top-left corner of the primary screen is 0, 0.

Parameters
  • x - the x coordinate of the screen location to test. If this parameter is provided, then the y parameter must also be provided and the pointTable parameter must not be provided.
  • y - the y coordinate of the screen location to test. This parameter is required if the x parameter is provided.
  • pointTable - the x and y coordinates of the screen location to test provided as a point-table, like the one returned by hs.mouse.getAbsolutePosition (a point-table is a table with key-value pairs for keys x and y). If this parameter is provided, then separate x and y parameters must not also be present.
Returns
  • an axuielementObject for the object at the specified coordinates, or nil and an error string if no object could be identified or an accessibility error occurred
Notes
  • This method can only be called on an axuielementObject that represents an application or the system-wide element (see hs.axuielement.systemWideElement).
  • This function does hit-testing based on window z-order (that is, layering). If one window is on top of another window, the returned accessibility object comes from whichever window is topmost at the specified location.
  • If this method is called on an axuielementObject representing an application, the search is restricted to the application.
  • If this method is called on an axuielementObject representing the system-wide element, the search is not restricted to any particular application. See hs.axuielement.systemElementAtPosition.
Source extensions/axuielement/libaxuielement.m line 533
elementSearch
Signature hs.axuielement:elementSearch(callback, [criteria], [namedModifiers]) -> elementSearchObject
Type Method
Description

Search for and generate a table of the accessibility elements for the attributes and descendants of this object based on the specified criteria.

Parameters
  • callback - a (usually) required function which will receive the results of this search. The callback should expect three arguments and return none. The arguments to the callback function will be msg, a string specifying how the search ended and results, the elementSearchObject containing the requested results, and the number of items added to the results (see count in namedModifiers). msg will be "completed" if the search completes normally, or a string starting with "**" if it is terminated early (see Returns: and Notes: for more details).
  • criteria - an optional function which should accept one argument (the current element being examined) and return true if it should be included in the results or false if it should be rejected. See hs.axuielement.searchCriteriaFunction to create a search function that uses hs.axuielement:matchesCriteria for evaluation.
  • namedModifiers - an optional table specifying key-value pairs that further modify or control the search. This table may contain 0 or more of the following keys:
    • count - an optional integer, default math.huge, specifying the maximum number of matches to collect before ending the search and invoking the callback. You can continue the search to find additional elements by invoking elementSearchObject:next() (described below in the Returns section) on the return value of this method, or on the results argument passed to the callback.
    • depth - an optional integer, default math.huge, specifying the maximum number of steps (descendants) from the initial accessibility element the search should visit. If you know that your desired element(s) are relatively close to your starting element, setting this to a lower value can significantly speed up the search.
    • The following are also recognized, but may impact the speed of the search, the responsiveness of Hammerspoon, or the format of the results in ways that limit further filtering and are not recommended except when you know that you require them: * asTree - an optional boolean, default false, and ignored if criteria is specified and non-empty, objectOnly is true, or count is specified. This modifier specifies whether the search results should return as an array table of tables containing each element's details (false) or as a tree where in which the root node details are the key-value pairs of the returned table and descendant elements are likewise described in subtables attached to the attribute name they belong to (true). This format is primarily for debugging and exploratory purposes and may not be arranged for easy programatic evaluation. * includeParents - a boolean, default false, specifying whether or not parent attributes (AXParent and AXTopLevelUIElement) should be examined during the search. Note that in most cases, setting this value to true will end up traversing the entire Accessibility structure for the target application and may significantly slow down the search. * noCallback - an optional boolean, default false, and ignored if callback is not also nil, allowing you to specify nil as the callback when set to true. This feature requires setting this named argument to true and specifying the callback field as nil because starting a query from an element with a lot of descendants WILL block Hammerspoon and slow down the responsiveness of your computer (I've seen blocking for over 5 minutes in extreme cases) and should be used only when you know you are starting from close to the end of the element hierarchy. * objectOnly - an optional boolean, default true, specifying whether each result in the final table will be the accessibility element discovered (true) or a table containing details about the element include the attribute names, actions, etc. for the element (false). This latter format is primarily for debugging and exploratory purposes and may not be arranged for easy programatic evaluation.
Returns
  • an elementSearchObject which contains metamethods allowing you to check to see if the process has completed and cancel it early if desired. The methods include:
    • elementSearchObject:cancel([reason]) - cancels the current search and invokes the callback with the partial results already collected. If you specify reason, the msg argument for the callback will be ** <reason>; otherwise it will be "** cancelled".
    • elementSearchObject:isRunning() - returns true if the search is currently ongoing or false if it has completed or been cancelled.
    • elementSearchObject:matched() - returns an integer specifying the number of elements which have already been found that meet the specified criteria function.
    • elementSearchObject:runTime() - returns an integer specifying the number of seconds spent performing this search. Note that this is not an accurate measure of how much time a given search will always take because the time will be greatly affected by how much other activity is occurring within Hammerspoon and on the users computer. Resuming a cancelled search or a search which invoked the callback because it reached count items with the next method (described below) will cause this number to begin increasing again to provide a cumulative total of time spent performing the search; time between when the callback is invoked and the next method is invoked is not included.
    • elementSearchObject:visited() - returns an integer specifying the number of elements which have been examined during the search so far.
    • If asTree is false or not specified, the following additional methods will be available:
      • elementSearchObject:filter(criteria, [callback]) -> filterObject
        • returns a new table containing elements in the search results that match the specified criteria.
          • criteria - a required function which should accept one argument (the current element being examined) and return true if it should be included in the results or false if it should be rejected. See hs.axuielement.searchCriteriaFunction to create a search function that uses hs.axuielement:matchesCriteria for evaluation.
          • callback - an optional callback which should expect two arguments and return none. If a callback is specified, the callback will receive two arguments, a msg indicating how the callback ended (the message format matches the style defined for this method) and the filterObject which contains the matching elements.
        • The filterObject returned by this method and passed to the callback, if defined, will support the following methods as defined here: cancel, filter, isRunning, matched, runTime, and visited.
      • elementSearchObject:next() - if the search was cancelled or reached the count of matches specified, this method will continue the search where it left off. The elementSearchObject returned when the callback is next invoked will have up to count items added to the existing results (calls to next are cumulative for the total results captured in the elementSearchObject). The third argument to the callback will be the number of items added to the search results, not the number of items in the search results.
Notes
  • This method utilizes coroutines to keep Hammerspoon responsive, but may be slow to complete if includeParents is true, if you do not specify depth, or if you start from an element that has a lot of descendants (e.g. the application element for a web browser). This is dependent entirely upon how many active accessibility elements the target application defines and where you begin your search and cannot reliably be determined up front, so you may need to experiment to find the best balance for your specific requirements.
  • The search performed is a breadth-first search, so in general earlier elements in the results table will be "closer" in the Accessibility hierarchy to the starting point than later elements.
  • The elementSearchObject returned by this method and the results passed in as the second argument to the callback function are the same object -- you can use either one in your code depending upon which makes the most sense. Results that match the criteria function are added to the elementSearchObject as they are found, so if you examine the object/table returned by this method and determine that you have located the element or elements you require before the callback has been invoked, you can safely invoke the cancel method to end the search early.
    • The exception to this is when asTree is true and objectsOnly is false and the search criteria is nil -- see hs.axuielement:buildTree. In this case, the results passed to the callback will be equal to elementSearchObject[1].
  • If objectsOnly is specified as false, it may take some time after cancel is invoked for the mapping of element attribute tables to the descendant elements in the results set -- this is a by product of the need to iterate through the results to match up all of the instances of each element to it's attribute table.
  • hs.axuielement:allDescendantElements is syntactic sugar for hs.axuielement:elementSearch(callback, { [includeParents = withParents] })
  • hs.axuielement:buildTree is syntactic sugar for hs.axuielement:elementSearch(callback, { objectOnly = false, asTree = true, [depth = depth], [includeParents = withParents] })
Source extensions/axuielement/axuielement.lua line 766
isAttributeSettable
Signature hs.axuielement:isAttributeSettable(attribute) -> boolean | nil, errString
Type Method
Description

Returns whether the specified accessibility object's attribute can be modified.

Parameters
Returns
  • a boolean value indicating whether or not the value of the parameter can be modified or nil and an error string if an accessibility error occurred
Source extensions/axuielement/libaxuielement.m line 421
isValid
Signature hs.axuielement:isValid() -> boolean | nil, errString
Type Method
Description

Returns whether the specified accessibility object is still valid.

Parameters
  • None
Returns
  • a boolean value indicating whether or not the accessibility object is still valid or nil and an error string if any other accessibility error occurred
Notes
  • an accessibilityObject can become invalid for a variety of reasons, including but not limited to the element referred to no longer being available (e.g. an element referring to a window or one of its descendants that has been closed) or the application terminating.
Source extensions/axuielement/libaxuielement.m line 447
matchesCriteria
Signature hs.axuielement:matchesCriteria(criteria) -> boolean
Type Method
Description

Returns true if the axuielementObject matches the specified criteria or false if it does not.

Parameters
  • criteria - the criteria to compare against the accessibility object
Returns
  • true if the axuielementObject matches the criteria, false if it does not.
Notes
  • the criteria argument must be one of the following:

    • a single string, specifying the value the element's AXRole attribute must equal for a positive match

    • an array table of strings specifying a list of possible values the element's AXRole attribute can equal for a positive match

    • a table of key-value pairs specifying a more complex criteria. The table should be defined as follows:

      • one or more of the following must be specified (though all specified must match):
        • attribute -- a string, or table of strings, specifying attributes that the element must support.
        • action -- a string, or table of strings, specifying actions that the element must be able to perform.
        • parameterizedAttribute -- a string, or table of strings, specifying parametrized attributes that the element must support.
      • if the attribute key is specified, you can use one of the following to specify a specific value the attribute must equal for a positive match. No more than one of these should be provided. If neither are present, then only the existence of the attributes specified by attribute are required.
        • value -- a value, or table of values, that a specified attribute must equal. If it's a table, then only one of the values has to match the attribute value for a positive match. Note that if you specify more than one attribute with the attribute key, you must provide at least one value for each attribute in this table (order does not matter, but the match will fail if any attribute does not match at least one value provided).
          • when specifying a value which is itself a table with keys (e.g. frame, size, url, color, etc.) then you must provide the value or values as a table of tables, e.g. { { y = 22 } }.
            • only those keys which are specified within the value are checked for equality (or pattern matching). Values which are present in the attribute's value but are not specified in the comparison value are ignored (i.e. the previous example of y = 22 would only check the y component of an AXFrame attribute -- the x, h, and w values would be ignored).
            • For value components which are numeric, e.g. 22 in the previous example, the default comparison is equality. You may change this with the comparison key described below in the optional keys.
            • For possible keys when trying to match a color, see the documentation for hs.drawing.color.
            • For possible keys when trying to match a URL, use url = <string> and/or filePath = <string>. The string for the specified table key will be compared in accordance with the pattern optional key described below.
          • when specifying a value which is itself a table of values (e.g. a list of axuielementObjects) you must provide the value or values as a table of tables, e.g. { { obj1, obj2 } }.
            • Order of the elements provided in the comparison value does not matter -- this only tests for existence within the attributes value.
            • The test is for inclusion only -- the attribute's value may contain other elements as well, but must contain those specified within the comparison value.
        • nilValue -- a boolean, specifying that the attributes must not have an assigned value (true) or may be assigned any value except nil (false). If the value key is specified, this key is ignored. Note that this applies to all of the attributes specified with the attribute key.
      • the following are optional keys and are not required:
        • pattern -- a boolean, default false, specifying whether string matches for attribute values should be evaluated with string.match (true) or as exact matches (false). See the Lua manual, section 6.4.1 (help.lua._man._6_4_1 in the Hammerspoon console). If the value key is not set, than this key is ignored.
        • invert -- a boolean, default false, specifying inverted logic for the criteria result --- if this is true and the criteria matches, evaluate criteria as false; otherwise evaluate as true.
        • comparison -- a string, default "==", specifying the comparison to be used when comparing numeric values. Possible comparison strings are: "==" for equality, "<" for less than, "<=" for less than or equal to, ">" for greater than, ">=" for greater than or equal to, or "~=" for not equal to.
    • an array table of one or more key-value tables as described immediately above; the element must be a positive match for all of the individual criteria tables specified (logical AND).

  • This method is used by hs.axuielement.searchCriteriaFunction to create criteria functions compatible with hs.axuielement:elementSearch.

Source extensions/axuielement/axuielement.lua line 265
parameterizedAttributeNames
Signature hs.axuielement:parameterizedAttributeNames() -> table | nil, errString
Type Method
Description

Returns a list of all the parameterized attributes supported by the specified accessibility object.

Parameters
  • None
Returns
  • an array of the names of all parameterized attributes supported by the axuielementObject or nil and an error string if an accessibility error occurred
Source extensions/axuielement/libaxuielement.m line 391
parameterizedAttributeValue
Signature hs.axuielement:parameterizedAttributeValue(attribute, parameter) -> value | nil, errString
Type Method
Description

Returns the value of an accessibility object's parameterized attribute.

Parameters
Returns
  • the current value of the parameterized attribute, nil if the parameterized attribute has no value, or nil and an error string if an accessibility error occurred
Notes
  • The specific parameter required for a each parameterized attribute is different and is often application specific thus requiring some experimentation. Notes regarding identified parameter types and thoughts on some still being investigated will be provided in the Hammerspoon Wiki, hopefully shortly after this module becomes part of a Hammerspoon release.
Source extensions/axuielement/libaxuielement.m line 582
path
Signature hs.axuielement:path() -> table
Type Method
Description

Returns a table of axuielements tracing this object through its parent objects to the root for this element, most likely an application object or the system wide object.

Parameters
  • None
Returns
  • a table containing this object and 0 or more parent objects representing the path from the root object to this element.
Notes
  • this object will always exist as the last element in the table (e.g. at table[#table]) with its most immediate parent at #table - 1, etc. until the rootmost object for this element is reached at index position 1.
  • an axuielement object representing an application or the system wide object is its own rootmost object and will return a table containing only itself (i.e. #table will equal 1)
Source extensions/axuielement/axuielement.lua line 211
performAction
Signature hs.axuielement:performAction(action) -> axuielement | false | nil, errString
Type Method
Description

Requests that the specified accessibility object perform the specified action.

Parameters
Returns
  • if the requested action was accepted by the target, returns the axuielementObject; if the requested action was rejected, returns false; otherwise returns nil and an error string if an accessibility error occurred
Notes
  • The return value only suggests success or failure, but is not a guarantee. The receiving application may have internal logic which prevents the action from occurring at this time for some reason, even though this method returns success (the axuielementObject). Contrawise, the requested action may trigger a requirement for a response from the user and thus appear to time out, causing this method to return false or nil.
Source extensions/axuielement/libaxuielement.m line 503
pid
Signature hs.axuielement:pid() -> integer | nil, errString
Type Method
Description

Returns the process ID associated with the specified accessibility object.

Parameters
  • None
Returns
  • the process ID for the application to which the accessibility object ultimately belongs or nil and an error string if an accessibility error occurred
Source extensions/axuielement/libaxuielement.m line 478
setAttributeValue
Signature hs.axuielement:setAttributeValue(attribute, value) -> axuielementObject | nil, errString
Type Method
Description

Sets the accessibility object's attribute to the specified value.

Parameters
Returns
  • the axuielementObject on success; nil and an error string if the attribute could not be set or an accessibility error occurred.
Source extensions/axuielement/libaxuielement.m line 617
setTimeout
Signature hs.axuielement:setTimeout(value) -> axuielementObject | nil, errString
Type Method
Description

Sets the timeout value used accessibility queries performed from this element.

Parameters
  • value - the number of seconds for the new timeout value. Must be 0 or positive.
Returns
  • the axuielementObject or nil and an error string if an accessibility error occurred
Notes
  • To change the global timeout affecting all queries on elements which do not have a specific timeout set, use this method on the systemwide element (see hs.axuielement.systemWideElement.
  • Changing the timeout value for an axuielement object only changes the value for that specific element -- other axuieleement objects that may refer to the identical accessibility item are not affected.
  • Setting the value to 0.0 resets the timeout -- if applied to the systemWideElement, the global default will be reset to its default value; if applied to another axuielement object, the timeout will be reset to the current global value as applied to the systemWideElement.
Source extensions/axuielement/libaxuielement.m line 710