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