summaryrefslogtreecommitdiff
path: root/tests/testcases/logs.py
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2019-04-02 10:49:25 -0400
committerPliable Pixels <pliablepixels@gmail.com>2019-04-02 10:49:25 -0400
commit54a54a2907cbf8f07cab2c05dd478570c78cf3f1 (patch)
tree18dd08033f2d96ab48f7634480bf306a82f68203 /tests/testcases/logs.py
parent29ac5329274d129b3c85eeda480048c6c7687cc5 (diff)
#801 final cleanups, some test aut stuff too
Diffstat (limited to 'tests/testcases/logs.py')
-rw-r--r--tests/testcases/logs.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/testcases/logs.py b/tests/testcases/logs.py
new file mode 100644
index 00000000..a24abb8c
--- /dev/null
+++ b/tests/testcases/logs.py
@@ -0,0 +1,15 @@
+'''
+Validates Logs View
+'''
+
+import common as c
+from time import sleep
+import app
+
+def run_tests(self):
+ app.tap_menu_js()
+ c.log ('Validating logs')
+ c.click_item('testaut_menu_logs')
+ sleep(2)
+ c.take_screenshot(None, 'logs-app-ver.png')
+