我已经使用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>