fix selenium imports in automount web UI test

Fixes: https://pagure.io/freeipa/issue/7942
Reviewed-By: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Alexander Bokovoy 2019-05-14 21:36:36 +03:00
parent 9cb6817b30
commit c41b3ae98f

View File

@ -22,7 +22,10 @@ Automount tests
"""
from ipatests.test_webui.ui_driver import UI_driver, screenshot
from ipatests.test_webui.ui_driver import Keys
try:
from selenium.webdriver.common.keys import Keys
except ImportError:
pass
import pytest
LOC_ENTITY = 'automountlocation'