FIX: Fix some Django4 deprecation warnings

Why not...
This commit is contained in:
2020-02-21 02:09:04 +00:00
parent 79ec9214f9
commit b497ec11a0
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ def create_browser():
if os.environ.get('CI', False):
options.add_argument("--headless")
options.add_argument("--no-sandbox")
driver = webdriver.Chrome(chrome_options=options)
driver = webdriver.Chrome(options=options)
return driver