aboutsummaryrefslogtreecommitdiff
path: root/automated/android/apk-automation/vellamo3.py
diff options
context:
space:
mode:
Diffstat (limited to 'automated/android/apk-automation/vellamo3.py')
-rwxr-xr-xautomated/android/apk-automation/vellamo3.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/automated/android/apk-automation/vellamo3.py b/automated/android/apk-automation/vellamo3.py
index 413ee61..3d763aa 100755
--- a/automated/android/apk-automation/vellamo3.py
+++ b/automated/android/apk-automation/vellamo3.py
@@ -48,9 +48,17 @@ class ApkRunnerImpl(ApkTestRunner):
btn_setup_1 = self.vc.findViewById("android:id/button1")
btn_settings = self.vc.findViewById('com.quicinc.vellamo:id/main_toolbar_wheel')
btn_animations = self.vc.findViewWithText(u'Make Vellamo even more beautiful')
+ warn_msg = self.vc.findViewWithText(u'This app was built for an older version of Android and may not work properly. Try checking for updates, or contact the developer.')
+ continue_btn = self.vc.findViewWithText(u'CONTINUE')
if btn_setup_1:
# Accept Vellamo EULA
btn_setup_1.touch()
+ elif warn_msg:
+ self.logger.info("Older version warning popped up")
+ warning_ok_btn = self.vc.findViewWithTextOrRaise(u'OK')
+ warning_ok_btn.touch()
+ elif continue_btn:
+ continue_btn.touch()
elif btn_settings:
# Open settings
btn_settings.touch()