Skip to content

Instantly share code, notes, and snippets.

View mahboud's full-sized avatar

Mahboud Zabetian mahboud

View GitHub Profile
@mahboud
mahboud / GetFrontAppSelectedText.swift
Last active December 12, 2024 10:51
Trying to get the selected text in the frontmost App using AXUIElement
func getAXSelectedText() -> String? {
requestAccessibilityPermissions()
if let text = searchInFocusedTextField() {
return text
}
return nil
}