summaryrefslogtreecommitdiff
path: root/tests/selenium.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/selenium.py')
-rw-r--r--tests/selenium.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/selenium.py b/tests/selenium.py
deleted file mode 100644
index 3b101cd40..000000000
--- a/tests/selenium.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/python3
-
-from selenium import webdriver
-
-options = webdriver.ChromeOptions()
-
-driver = webdriver.Remote(
- command_executor='http://selenium-hub.selenium-grid.svc.cluster.local/wd/hub',
- options=options
-)
-
-driver.get("http://tt-rss-latest-app.gitlab-fakecake.svc.cluster.local/tt-rss")
-print(driver.page_source)
-driver.quit()
-