summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Khare <amit.khare@linaro.org>2014-08-20 22:17:01 +0530
committerAmit Khare <amit.khare@linaro.org>2014-08-20 22:17:01 +0530
commite8c6aec3e3da713baf54e0cbd8a866c26cf12e02 (patch)
tree5f9e34e34c6b125879bc155fd772a47e9f7dd8ba
parentc6c20586305246c80a233c74d6e1e6c9dbab00a7 (diff)
wait time increased for vellamo start button
-rw-r--r--vellamo/vc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/vellamo/vc.py b/vellamo/vc.py
index 8bbe162..d4826b1 100644
--- a/vellamo/vc.py
+++ b/vellamo/vc.py
@@ -56,13 +56,13 @@ vc.dump('-1')
btn_setup_2 = vc.findViewByIdOrRaise("android:id/button2")
btn_setup_2.touch()
vc.dump('-1')
-time.sleep(5)
+time.sleep(10)
#Start Button
btn_start_on = vc.findViewWithTextOrRaise("Start")
btn_start_on.touch()
vc.dump('-1')
-time.sleep(2)
+time.sleep(5)
#Enable Tutorial button
btn_setup_3 = vc.findViewByIdOrRaise("android:id/button2")
@@ -71,7 +71,7 @@ btn_setup_3.touch()
#Wait while Vellamo is running benchmark
finished = False
while (not finished):
- time.sleep(50)
+ time.sleep(1)
try:
vc.dump(window='-1')
vc.findViewByIdOrRaise("com.quicinc.vellamo:id/score_view")