Hello,
I have done basic configuration for a macos project using fastlane scan
When i run the job i get the following error
Unable to run UI Tests because Xcode Helper does not have permission to use Accessibility. To enable UI testing, go to the Security & Privacy pane in System Preferences, select the Privacy tab, then select Accessibility, and add Xcode Helper to the list of applications allowed to use Accessibility ...
I can’t find a lot of documentation on basic setup for macos, any resources i might have missed?
version: 2
jobs:
build-and-test:
macos:
xcode: "9.4.1"
working_directory: /Users/distiller/project
environment:
FL_OUTPUT_DIR: output
FASTLANE_LANE: test
shell: /bin/bash --login -o pipefail
steps:
- checkout
- run:
name: Install CocoaPods
command: pod install
- run:
name: Fastlane
command: bundle exec fastlane $FASTLANE_LANE
- store_artifacts:
path: output
- store_test_results:
path: output/scan
workflows:
version: 2
build-test:
jobs:
- build-and-test