--- /dev/null
+from django.contrib.staticfiles.testing import StaticLiveServerTestCase
+from selenium.webdriver.firefox.webdriver import WebDriver
+
+
+class SandboxTestCase(StaticLiveServerTestCase):
+ @classmethod
+ def setUpClass(cls):
+ super().setUpClass()
+ cls.selenium = WebDriver()
+ cls.selenium.implicitly_wait(10)
+
+ @classmethod
+ def tearDownClass(cls):
+ cls.selenium.quit()
+ super().tearDownClass()
+
+ def test_payment(self):
+ self.selenium.get('%s%s' % (self.live_server_url, '/towarzystwo/'))
+ from time import sleep
+ sleep(10)