SeleniumBase/seleniumbase/__init__.py

11 lines
429 B
Python
Raw Normal View History

from seleniumbase.__version__ import __version__ # noqa
2015-12-05 05:11:53 +08:00
from seleniumbase.fixtures.base_case import BaseCase # noqa
2016-07-15 11:26:03 +08:00
from seleniumbase.masterqa.master_qa import MasterQA # noqa
from seleniumbase.common import decorators # noqa
2019-09-16 17:12:17 +08:00
from seleniumbase.common import encryption # noqa
2020-04-27 13:03:21 +08:00
import sys
2021-05-09 02:17:24 +08:00
2020-04-27 13:03:21 +08:00
if sys.version_info[0] >= 3:
from seleniumbase import translate # noqa
del sys # Undo "import sys" / Simplify "dir(seleniumbase)"