を使用してアプリケーションを開きましたwindow.location = "Recipes://"
。私のiosから。JavaScript を使用して、このアプリケーションでいくつかの UI 要素のテストを実行したいと考えています。アプリケーションが別のウィンドウで開かれたため、html ページから ui テストを実行できませんでした。
<script type="text/javascript" charset="utf-8">
window.location = "Recipes://";
/*var target = UIATarget.localTarget();
target.frontMostApp().navigationBar().rightButton().tap();
target.frontMostApp().keyboard().typeString("Myrecipe\n");
target.frontMostApp().navigationBar().rightButton().tap();
target.frontMostApp().mainWindow().tableViews()["Empty list"].buttons()["choosePhoto"].tap();
target.frontMostApp().mainWindow().tableViews()["Empty list"].cells()["Nature, (13)"].tap();
target.frontMostApp().mainWindow().tableViews()["Empty list"].cells()["Photo, IMG_0026"].images()["Photo, IMG_0024"].tapWithOptions({tapOffset:{x:0.59, y:0.58}});
target.frontMostApp().navigationBar().rightButton().tap();
target.frontMostApp().navigationBar().leftButton().tap();*/
</script>