mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-10 15:46:35 +00:00
21 lines
375 B
Python
21 lines
375 B
Python
try:
|
|
import org.sikuli.script.SikulixForJython
|
|
from sikuli import *
|
|
except Exception:
|
|
pass
|
|
|
|
|
|
class BaseTestCase:
|
|
|
|
try:
|
|
Settings.ActionLogs = 0
|
|
Settings.MinSimilarity = 0.4
|
|
except NameError:
|
|
pass
|
|
|
|
def setup_method(self, method):
|
|
openApp('/home/squashfs-root/AppRun')
|
|
|
|
def teardown_method(self, method):
|
|
pass
|