summaryrefslogtreecommitdiff
path: root/tests/testcases/events.py
diff options
context:
space:
mode:
author= <=>2019-03-11 16:13:08 -0400
committer= <=>2019-03-11 16:13:08 -0400
commit691d22daa420f446d6bb45ba41202c1b7aab161e (patch)
treef895ac5ec2a19417a7bdb08a2f12944c67c3b269 /tests/testcases/events.py
parent42c6115f50d1455d1ef126edbbbea17125bb8d41 (diff)
#791 events run
Diffstat (limited to 'tests/testcases/events.py')
-rw-r--r--tests/testcases/events.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/testcases/events.py b/tests/testcases/events.py
new file mode 100644
index 00000000..9709dd3c
--- /dev/null
+++ b/tests/testcases/events.py
@@ -0,0 +1,28 @@
+'''
+Validates Events view
+'''
+
+import common as c
+from time import sleep
+import app
+
+def run_tests(self):
+ app.tap_menu_js()
+ c.log ('Validating events')
+ c.click_item('testaut_menu_events')
+
+ # Can't use click_item (el.click) due to footer button
+ # focus conflict
+ # taking 2nd event - first one goes off in emulator
+ # no idea why
+
+ c.click_item_js('testaut_events_footage_button-1')
+
+ sleep(4)
+ c.take_screenshot(None,'events-playback.png')
+ sleep(1)
+ c.dbl_click_item('testaut_events_playwindow')
+
+
+
+