diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2023-10-22 11:19:56 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2023-10-22 11:19:56 +0300 |
| commit | 382d01e8db053023d4e461e535d6cc49c7ecc76f (patch) | |
| tree | 07d23a387ebebae837c1e6eec129653525d8897b /tests/selenium | |
| parent | 487635ca28952e8cc4f5be26d34be198ff0348ea (diff) | |
update test filename
Diffstat (limited to 'tests/selenium')
| -rw-r--r-- | tests/selenium/test.py | 15 |
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() + |