summaryrefslogtreecommitdiff
path: root/tests/selenium.py
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2023-10-22 11:19:56 +0300
committerAndrew Dolgov <fox@fakecake.org>2023-10-22 11:19:56 +0300
commit382d01e8db053023d4e461e535d6cc49c7ecc76f (patch)
tree07d23a387ebebae837c1e6eec129653525d8897b /tests/selenium.py
parent487635ca28952e8cc4f5be26d34be198ff0348ea (diff)
update test filename
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()
-