diff --git a/appium-tests/android/android.spec.js b/appium-tests/android/android.spec.js index c8b2963..0e00bab 100644 --- a/appium-tests/android/android.spec.js +++ b/appium-tests/android/android.spec.js @@ -400,7 +400,18 @@ describe('Camera tests Android.', function () { return driver .deviceKeyEvent(BACK_BUTTON) // give native app some time to close - .sleep(2000); + .sleep(2000) + // try again! because every ~30th build + // on Sauce Labs this backbutton doesn't work + .elementById('action_bar_title') + .then(function () { + // success means we're still in native app + return driver + .deviceKeyEvent(BACK_BUTTON); + }, function () { + // error means we're already in webview + return driver; + }); }, function () { // error means we're already in webview return driver;