Fastlane,AppleScript可以作为一个步骤跑吗?

时间:2018-02-09 06:24:53

标签: fastlane

我正在尝试使用AppleScript在我的fastlane中执行一些步骤。我找不到任何关于此的文件。

我知道你可以从fastlane运行shell脚本,但我不确定你是否可以运行AppleScripts

1 个答案:

答案 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

运行它