Segregation of Dev and Prod envs (#218)

Segregation of Dev and Prod envs, addition of tests

Co-authored-by: Markos Gogoulos <mgogoulos@gmail.com>
Co-authored-by: Ubuntu <shubhank@my-hostings.nxfutj5b2tlubjykddwgszqteb.bx.internal.cloudapp.net>
This commit is contained in:
Shubhank Saxena
2021-07-01 20:35:43 +05:30
committed by GitHub
parent d17b3b4153
commit c28a39fa47
12 changed files with 171 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
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")