2018-09-15 17:18:29 +00:00
|
|
|
import org.sikuli.script.SikulixForJython
|
|
|
|
from sikuli import *
|
|
|
|
|
|
|
|
|
|
|
|
class BaseTestCase:
|
2018-09-15 17:18:29 +00:00
|
|
|
|
2018-09-15 17:18:29 +00:00
|
|
|
Settings.ActionLogs = 0
|
|
|
|
|
|
|
|
def setup_method(self, method):
|
2018-09-15 17:18:29 +00:00
|
|
|
openApp('/home/squashfs-root/AppRun')
|
2018-09-15 17:18:29 +00:00
|
|
|
|
|
|
|
def teardown_method(self, method):
|
2018-09-15 17:18:29 +00:00
|
|
|
pass
|