beanshell に問題があります。Robotium テストを自動化できる BeanShell スクリプトを作成したいと考えています。
機能するシェルスクリプトがあり、やりたいことは何でもできますが、Beanshell と同等のものを探しています。
#!/bin/bash
echo "on lance l'AVD"
emulator -avd test &
echo "wait the end of launch"
sleep 15
echo "Installation of the application under test"
adb install -r /home/marie/workspace/AndroidCalculator/bin/AndroidCalculator.apk
echo "Installation of the test application"
adb install -r /home/marie/workspace/TestProject/bin/TestProject.apk
echo "Launch of test"
adb shell am instrument -w com.calculator.test/com.neenbedankt.android.test.InstrumentationTestRunner
echo "Saving file results"
adb pull data/data/com.calculator/files/TEST-all.xml ./resultats.xml
echo "killing the AVD"
adb emu kill
どのように、BeanShell を介して、事前に作成されたスクリプトを実行できますか、または他の方法で同等の結果が得られた場合は、提案してください。
3日間答えを探していますが、決定的なものは何もありません
よろしくお願いいたします。