We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ab963 commit 133b659Copy full SHA for 133b659
1 file changed
Tool/Sources/AXExtension/AXUIElement.swift
@@ -21,6 +21,10 @@ public extension AXUIElement {
21
var value: String {
22
(try? copyValue(key: kAXValueAttribute)) ?? ""
23
}
24
+
25
+ var intValue: Int? {
26
+ (try? copyValue(key: kAXValueAttribute))
27
+ }
28
29
var title: String {
30
(try? copyValue(key: kAXTitleAttribute)) ?? ""
0 commit comments