mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
4ad021691f
Signed-off-by: Anton Danchenko <ant.danchenko@gmail.com>
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
|