From 382d01e8db053023d4e461e535d6cc49c7ecc76f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 22 Oct 2023 11:19:56 +0300 Subject: update test filename --- tests/selenium.py | 15 --------------- tests/selenium/test.py | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 tests/selenium.py create mode 100644 tests/selenium/test.py (limited to 'tests') 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() - 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() + -- cgit v1.2.3