Skip to content
Snippets Groups Projects
Commit aa5eda39 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Fixing a couple of niggles

parent 0ee47f95
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ from selenium.webdriver.support import expected_conditions as EC ...@@ -10,7 +10,7 @@ from selenium.webdriver.support import expected_conditions as EC
# BROWSER = "firefox" # BROWSER = "firefox"
BROWSER = "edge" 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.testvips.nibio.no"
#HOST_URL = "https://logic.vips.nibio.no" #HOST_URL = "https://logic.vips.nibio.no"
...@@ -30,7 +30,7 @@ def browser(): ...@@ -30,7 +30,7 @@ def browser():
edge_options.headless = False edge_options.headless = False
driver = webdriver.Edge(options=edge_options) driver = webdriver.Edge(options=edge_options)
else: 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("http://vipslogic/index.html")
driver.get(f"{HOST_URL}/index.html") driver.get(f"{HOST_URL}/index.html")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment