File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change
1
+ import collections
2
+ import sys
1
3
from selenium import webdriver
2
4
from seleniumbase .__version__ import __version__
5
+ from seleniumbase .common import decorators # noqa
6
+ from seleniumbase .common import encryption # noqa
3
7
from seleniumbase .core .browser_launcher import get_driver # noqa
4
8
from seleniumbase .fixtures import js_utils # noqa
5
9
from seleniumbase .fixtures import page_actions # noqa
6
10
from seleniumbase .fixtures .base_case import BaseCase # noqa
7
11
from seleniumbase .masterqa .master_qa import MasterQA # noqa
8
- from seleniumbase .common import decorators # noqa
9
- from seleniumbase .common import encryption # noqa
10
- import collections
11
- import sys
12
12
13
13
if sys .version_info [0 ] >= 3 :
14
14
from seleniumbase import translate # noqa
20
20
del sys # Undo "import sys" / Simplify "dir(seleniumbase)"
21
21
del webdriver # Undo "import webdriver" / Simplify "dir(seleniumbase)"
22
22
23
- version_info = [int (i ) for i in __version__ .split ("." ) if i .isdigit ()] # noqa
23
+ version_info = [int (i ) for i in __version__ .split ("." ) if i .isdigit ()]
24
24
version_tuple = tuple (version_info ) # noqa
You can’t perform that action at this time.
0 commit comments