From 9d64bd3bcb72a0629363ceab44b056f690237531 Mon Sep 17 00:00:00 2001 From: Markos Gogoulos Date: Mon, 5 Dec 2022 13:03:17 +0200 Subject: [PATCH] remove file --- tests/test_selenium_smoke.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 tests/test_selenium_smoke.py diff --git a/tests/test_selenium_smoke.py b/tests/test_selenium_smoke.py deleted file mode 100644 index 4607a7e..0000000 --- a/tests/test_selenium_smoke.py +++ /dev/null @@ -1,13 +0,0 @@ -# from django.test import TestCase -# from selenium import webdriver -# from selenium.webdriver.common.desired_capabilities import DesiredCapabilities -# -# -# class SeleniumTest(TestCase): -# def setUp(self): -# self.chrome = webdriver.Remote(command_executor='http://selenium_hub:4444/wd/hub', desired_capabilities=DesiredCapabilities.CHROME) -# self.chrome.implicitly_wait(10) -# -# def test_visit_site_with_chrome(self): -# self.chrome.get('http://web/admin') -# self.assertIn(self.chrome.title, "Log in | Django site admin")