Remove the authorization prompt from command line tools (Under mavericks)

Similar to this question, except that the authorization database changed the formats for mavericks and the old solution does not work: Is there a way to remove the authorization prompt from instances of the command-line tools (Xcode)?

A specific use case is to make the ios driver work for automatic testing: http://ios-driver.imtqy.com/ios-driver/faq.html

Specific invitation: "Tools want permission to analyze other processes"

I tried

sudo security authorizationdb write system.privilege.taskport allow 

and

 sudo security authorizationdb write system.privilege.taskport is-developer 

(with a user belonging to the _developers group), but the tooltip still appears every time: (

Also tried

 sudo security authorizationdb write com.apple.dt.instruments.process.analysis allow 

because it looked connected (thinking maybe the name of the required permission has changed, as well as the way it was installed), but still receiving the invitation

+5
ios authorization xcode osx-mavericks ios-ui-automation
source share

No one has answered this question yet.

See similar questions:

28
Is there a way to remove the authorization prompt from instances of the command line tools (Xcode)?
7
Tools want permission to analyze other Jenkins processes

or similar:

441
How to remove CocoaPods from a project?
399
Xcode - install command line tools
341
Xcode "Build and Archive" from the command line
229
Tests / Features iOS TDD / BDD and Integration and Acceptance Tests
93
Failed to use xcodebuild in Mavericks with command line tools installed
28
Is there a way to remove the authorization prompt from instances of the command line tools (Xcode)?
24
Run the specific hardware version of the iOS simulator using the tool command line utility
8
Memory profiling does not work with Xcode 9
2
Installing a version of the iOS simulator from the command line
one
tools + UIAutomation from shell script

All Articles