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