I just started trying UIAutomation with tuneup.js. I can test my first window just fine, but the second window fails -- my app is still looking at the first window and sees e.g. the "Sign in with Facebook" button. I've tried adding delays but this didn't seem to help. Any idea on what I'm doing wrong?
#import "tuneup.js"
target = UIATarget.localTarget();
application = target.frontMostApp();
test("Test first-run view controller", function(app, target) {
assertWindow({
buttons : [
{ name : "Sign in with Facebook"},
{ name : "Create account"},
{ name : "Login"},
{ name : "Try"}
],
onPass: function(window) {
var createAccountButton = window.buttons()["Create account"]
createAccountButton.tap();
}
});
});
test("Test Sign-in screen", function(app, target) {
assertWindow({
buttons : [
{ name : "Sign up"}
]
});
});