From aa5eda39b470d32e1218ab9088a1b7c14e4e2437 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Fri, 12 Jan 2024 09:20:42 +0100 Subject: [PATCH] Fixing a couple of niggles --- selenium/tests/test_selenium.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selenium/tests/test_selenium.py b/selenium/tests/test_selenium.py index 73886a89..2b2a183c 100644 --- a/selenium/tests/test_selenium.py +++ b/selenium/tests/test_selenium.py @@ -10,7 +10,7 @@ from selenium.webdriver.support import expected_conditions as EC # BROWSER = "firefox" BROWSER = "edge" -HOST_URL = "http://vipslogic-local.no/" +HOST_URL = "http://vipslogic-local.no" #HOST_URL = "https://logic.testvips.nibio.no" #HOST_URL = "https://logic.vips.nibio.no" @@ -30,7 +30,7 @@ def browser(): edge_options.headless = False driver = webdriver.Edge(options=edge_options) else: - raise Exception("Browser must be set to either chrome or firefox") + raise Exception("Browser must be set to chrome, firefox or edge") #driver.get("http://vipslogic/index.html") driver.get(f"{HOST_URL}/index.html") -- GitLab