tmandry on master
Fix travis (compare)
tmandry on test-fun
tmandry on master
FakeAXSwift: Synchronize attrib… Remove global test state for li… Remove global test state for ob… and 8 more (compare)
tmandry on test-fun
Fix method publicitly (compare)
tmandry on test-fun
FakeAXSwift: Synchronize attrib… Remove global test state for li… Remove global test state for ob… and 6 more (compare)
tmandry on 0.0.5
tmandry on 0.3.0
// Must add the observer after configuring frontmostApplication.
appObserver.onFrontmostApplicationChanged(frontmostApplication.refresh)
appObserver.onApplicationLaunched(onApplicationLaunch)
appObserver.onApplicationTerminated(onApplicationTerminate)
// Must not allow frontmostApplication to initialize until the observer is in place.
when(fulfilled: appPromises)
//.asVoid()
.then(execute: propertyInit) . <---- HERE
.catch(execute: propertyInitError)
frontmostApplication.initialized.catch { error in
log.error("Caught error: \(error)")
}.always {
log.debug("Done initializing")
}
}`
I'm looking for some basic getting-started info. When I tell XCode to "Clone an existing project", I get errors, such as "
Showing Recent Messages
:-1: /Users/kcrca/Documents/Swindler/Pods/Target Support Files/Pods-Swindler/Pods-Swindler.debug.xcconfig: unable to open file (in target "Swindler" in project "Swindler") (in target 'Swindler')
Build system information
error: /Users/kcrca/Documents/Swindler/Pods/Target Support Files/Pods-Swindler/Pods-Swindler.debug.xcconfig: unable to open file (in target "Swindler" in project "Swindler") (in target 'Swindler')
Build system information
error: /Users/kcrca/Documents/Swindler/Pods/Target Support Files/Pods-Swindler/Pods-Swindler.debug.xcconfig: unable to open file (in target "Swindler" in project "Swindler") (in target 'Swindler')"
I was expecting this to work out of the box, but then I'm pretty new to XCode, so maybe I'm missing something?
AXSwift
from ./AXSwift
AXSwift
in ./AXSwift
Hello. I'm trying to add Swindler to a cocoa app as a pod. The following 2 compile time errors appear:
Screen.swift line 152: 'self' captured by a closure before all members were initialized
Screen.swift line 155: Return from initializer without initializing all stored properties
Any idea how I might resolve this or is there an alternative set of steps to add Swindler to a cocoa app?
(No errors appear when building Swindler as a standalone project)
UIElement
instances from the debugger?(lldb) po webArea
<AXScrollArea "<AXUIElement 0x600000cc45d0> {pid=27997}" (pid=27997)>
(lldb) po webArea.attribute(Attribute.value) as? String
error: <EXPR>:3:1: error: generic parameter 'T' could not be inferred
webArea.attribute(Attribute.value) as? String
^