#!/bin/bash

if [[ -z `which autopilot3` ]]; then
  echo "Autopilot is not installed. Skip"
  exit 1
fi

SCRIPTPATH=`dirname $0`
pushd ${SCRIPTPATH}
python3 `which autopilot3` run --timeout-profile=long checkbox_touch
ret=$?
popd
exit $ret

