tests: exclude whonixcheck and NetworkManager from editor window search

Those may pop up before actual editor is found, which fails the test as
it can't handle such "editor".
This commit is contained in:
Marek Marczykowski-Górecki 2018-09-15 03:34:50 +02:00
parent ac8b8a3ad4
commit 240b1dd75e
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -267,7 +267,9 @@ class TC_20_DispVMMixin(object):
# ignore LibreOffice splash screen and window with no title
# set yet
if window_title and not window_title.startswith("LibreOffice")\
and not window_title == 'VMapp command':
and not window_title == 'VMapp command' \
and 'whonixcheck' not in window_title \
and not window_title == 'NetworkManager Applet':
break
wait_count += 1
if wait_count > 100: