4

ビューがホームインターフェイスにあるかどうかを確認し、そうでない場合はホームに表示する簡単な関数があります。

function returnHome() {
    if (UIATarget.localTarget().frontMostApp().navigationBar().name() == mainTitle) return true;

    // set tab bar to calculations
    UIALogger.logMessage("Set tab bar to main.");
    if (UIATarget.localTarget().frontMostApp().tabBar().selectedButton().name() != mainTabName) {
        UIATarget.localTarget().frontMostApp().tabBar().buttons()[mainTabName].tap();
    }

    // go back to the home
    UIALogger.logMessage("Go back to home.");
    var backButton = UIATarget.localTarget().frontMostApp().mainWindow().buttons()["Back"];
    if (backButton.isValid()) {
        backButton.tap();
    } else {
        UIALogger.logError("Could not find 'Back' button!");
    }
}

今、私は「「戻る」ボタンが見つかりませんでした!」というエラーを乗り越えることができません。それはそこにあり、左隅にあり、私を右に見つめ、私をからかっています!

UIATarget.localTarget().frontMostApp().logElementTree()私に次の木を与えます:

2) UIAApplication [name:MyApplication value:(null) rect:{{x:0, y:20}, {width:320, height:460}}]
3) UIAWindow [name:(null) value:(null) rect:{{x:0, y:0}, {width:320, height:480}}]
4) UIAImage [name:(null) value:(null) rect:{{x:0, y:108}, {width:320, height:367}}]
4) UIANavigationBar [name:(null) value:(null) rect:{{x:0, y:64}, {width:320, height:44}}]
5) UIASegmentedControl [name:(null) value:(null) rect:{{x:5, y:71}, {width:310, height:30}}]
6) UIAButton [name:SementedControllerTagC, 3 of 3 value:(null) rect:{{x:212, y:71}, {width:103, height:30}}]
6) UIAButton [name:SementedControllerTagB, 2 of 3 value:(null) rect:{{x:109, y:71}, {width:102, height:30}}]
6) UIAButton [name:SementedControllerTagA, 1 of 3 value:1 rect:{{x:5, y:71}, {width:103, height:30}}]
4) UIATableView [name:Empty list value:rows 1 to 2 of 3 rect:{{x:15, y:169}, {width:290, height:247}}]
5) UIAButton [name:XYZ value:(null) rect:{{x:20, y:121}, {width:280, height:46}}]
5) UIATableGroup [name:SomeText value:(null) rect:{{x:15, y:169}, {width:290, height:50}}]
6) UIAStaticText [name:SomeText value:(null) rect:{{x:25, y:197}, {width:270, height:22}}]
5) UIATableCell [name:A value:(null) rect:{{x:15, y:219}, {width:290, height:50}}]
6) UIAElement [name:B value:(null) rect:{{x:15, y:219}, {width:247, height:50}}]
6) UIAButton [name:more info, A value:(null) rect:{{x:262, y:219}, {width:43, height:50}}]
5) UIATableCell [name:X value:(null) rect:{{x:15, y:269}, {width:290, height:50}}]
6) UIAElement [name:Y value:(null) rect:{{x:15, y:269}, {width:247, height:50}}]
6) UIAButton [name:more info, B value:(null) rect:{{x:262, y:269}, {width:43, height:50}}]
4) UIAButton [name:(null) value:(null) rect:{{x:85, y:339}, {width:150, height:32}}]
4) UIAImage [name:(null) value:(null) rect:{{x:0, y:334}, {width:320, height:97}}]
4) UIAStaticText [name:SomeText value:(null) rect:{{x:45, y:377}, {width:189, height:21}}]
4) UIAStaticText [name:SomeText value:(null) rect:{{x:45, y:406}, {width:230, height:21}}]
4) UIAStaticText [name:SomeText value:(null) rect:{{x:234, y:377}, {width:41, height:21}}]
4) UIAStaticText [name:(null) value:(null) rect:{{x:0, y:0}, {width:0, height:21}}]
4) UIAStaticText [name:(null) value:(null) rect:{{x:45, y:377}, {width:230, height:21}}]
4) UIAStaticText [name:(null) value:(null) rect:{{x:45, y:406}, {width:230, height:21}}]
4) UIANavigationBar [name:mainNavigationBar value:(null) rect:{{x:0, y:20}, {width:320, height:44}}]
5) UIAStaticText [name:mainNavigationBar value:(null) rect:{{x:108, y:28}, {width:105, height:27}}]
5) UIAButton [name:Back value:(null) rect:{{x:5, y:27}, {width:49, height:30}}]
4) UIATabBar [name:(null) value:(null) rect:{{x:0, y:431}, {width:320, height:49}}]
5) UIAButton [name:tab1 value:1 rect:{{x:2, y:432}, {width:103, height:48}}]
5) UIAButton [name:tab2 value:(null) rect:{{x:109, y:432}, {width:102, height:48}}]
5) UIAButton [name:tab3 value:(null) rect:{{x:215, y:432}, {width:103, height:48}}]

ログには「戻る」ボタンがはっきりと表示されていますが、適切な参照がありません。誰かが私をここで正しい方向に向けることができますか?私は何か間違ったことをしていますか?参考までに、frontMostApp()、mainWindow()、navigationBar()からbuttons()にアクセスしようとしました。すべて失敗しました。

4

3 に答える 3

8

「戻る」ボタンはウィンドウの直接の子ではなく、ナビゲーションバーです。次のコードでアクセスしてみてください。

   var backButton = UIATarget.localTarget().frontMostApp().mainWindow().navigationBar().buttons()["Back"]; 
于 2010-10-06T14:18:15.167 に答える
4

ビュー階層をどのように構築していますか?ログから、1つのUIWindowの下に2つのナビゲーションバーがあるように見えます。1つはラベルなし、もう1つは。でラベル付けされていmainNavigationBarます。

クロースが指摘しているように、メインウィンドウのナビゲーションバーにアクセスすることで戻るボタンを取得できるはずですが、その2番目のナビゲーションバーが存在するために失敗する可能性があります。

役立つ場合は、UICatalogサンプルアプリケーションのすべてのセクションをステップスルーし、そのセクションのスクリーンショットを取得して、ナビゲーションコントローラーのメインレベルに戻るスクリプトを以下に示します。この例ではleftButton()、ナビゲーションバーの戻るボタンにアクセスするために使用します。

var target = UIATarget.localTarget();
var application = target.frontMostApp(); 
var mainWindow = application.mainWindow();
var tableView = mainWindow.tableViews()[0];


UIALogger.logMessage("Number of cells " + tableView.cells().length);

for (var currentCellIndex = 0; currentCellIndex < tableView.cells().length; currentCellIndex++)
{
    var currentCell = tableView.cells()[currentCellIndex];
    UIALogger.logStart("Testing table option " + currentCell.name());

    currentCell.scrollToVisible();  

    target.delay(1);
    currentCell.tap();  // Go down a level
    target.delay(1);

    UIATarget.localTarget().captureScreenWithName(currentCell.name());
    mainWindow.navigationBar().leftButton().tap(); // Go back
    target.delay(1);
    UIALogger.logPass("Testing table option " + currentCell.name());
}
于 2010-10-06T14:52:15.310 に答える
1

多分それは実際にはボタンではありません。同様の問題が発生し、ログからボタンとして返されましたが、実際にはビューです。したがって、私の解決策は、アイテム(画像の可能性があります)を見つけて、rect(x、y)を取得し、target.tapWithOptions({x:5、y:190});などの特定の場所で画面をタブで移動することです。これがお役に立てば幸いです、乾杯

于 2011-03-03T22:18:26.693 に答える