我正在尝试使用AppleScript在我的fastlane中执行一些步骤。我找不到任何关于此的文件。
我知道你可以从fastlane运行shell脚本,但我不确定你是否可以运行AppleScripts
答案 0 :(得分:1)
实现此目的的一种方法是创建一个执行AppleScript的shell脚本:
<root>/test.sh
:
#!/bin/bash
osascript <<EOD
tell application "Google Chrome"
activate
end tell
EOD
<root>/fastlane/Fastfile
:
platform :ios do
lane :test do
sh('../test.sh')
end
end
并使用bundle exec fastlane test