Skip to content

Commit f07a214

Browse files
committed
Sort imports
1 parent f24a38d commit f07a214

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ def test_anything(self):
3131
import time
3232
import unittest
3333
import uuid
34+
from selenium.common.exceptions import (StaleElementReferenceException,
35+
MoveTargetOutOfBoundsException,
36+
WebDriverException)
37+
from selenium.common import exceptions as selenium_exceptions
38+
from selenium.webdriver.common.by import By
39+
from selenium.webdriver.common.keys import Keys
40+
from selenium.webdriver.support.ui import Select
3441
from seleniumbase import config as sb_config
3542
from seleniumbase.common import decorators
3643
from seleniumbase.config import settings
@@ -45,13 +52,6 @@ def test_anything(self):
4552
from seleniumbase.fixtures import page_actions
4653
from seleniumbase.fixtures import page_utils
4754
from seleniumbase.fixtures import xpath_to_css
48-
from selenium.common.exceptions import (StaleElementReferenceException,
49-
MoveTargetOutOfBoundsException,
50-
WebDriverException)
51-
from selenium.common import exceptions as selenium_exceptions
52-
from selenium.webdriver.common.by import By
53-
from selenium.webdriver.common.keys import Keys
54-
from selenium.webdriver.support.ui import Select
5555
ENI_Exception = selenium_exceptions.ElementNotInteractableException
5656

5757

0 commit comments

Comments
 (0)