1 from django.contrib.staticfiles.testing import StaticLiveServerTestCase
 
   2 from selenium.webdriver.firefox.webdriver import WebDriver
 
   5 class SandboxTestCase(StaticLiveServerTestCase):
 
   9         cls.selenium = WebDriver()
 
  10         cls.selenium.implicitly_wait(10)
 
  13     def tearDownClass(cls):
 
  15         super().tearDownClass()
 
  17     def test_payment(self):
 
  18         self.selenium.get('%s%s' % (self.live_server_url, '/towarzystwo/'))
 
  19         from time import sleep