S or /

Module talon.axquery

from talon import axquery

Functions

NameReference
query(query: str) -> ui.Element
query_all(query: str) -> list[ui.Element]

Functions

query§

def query(query: str) -> talon.ui.Element

query_all§

def query_all(query: str) -> list[talon.ui.Element]

Example

from talon import axquery

for element in axquery.query_all("window button"):
    print(element)

Further reading