Skip to content

Selenium Work flow enhancements #4065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 49 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ec50ef0
fix(workflow): make 'network' input a choice type for workflow_dispatch
khaledyoussef24 Apr 22, 2025
6c4fc38
adding branch choosing and making lerna only runs on local
khaledyoussef24 Apr 23, 2025
6c76dd6
adding workflow to be build on any network or to run on the current n…
khaledyoussef24 May 5, 2025
eb49c47
removing local from choices
khaledyoussef24 May 6, 2025
bee5702
fixing checkout
khaledyoussef24 May 6, 2025
20ba723
fixing checkout
khaledyoussef24 May 6, 2025
d13f8c8
fixing checkout
khaledyoussef24 May 6, 2025
aa1e941
fixing confest.py
khaledyoussef24 May 6, 2025
0a3ce83
fixing workflow link
khaledyoussef24 May 6, 2025
49c7eb6
fixing workflow link
khaledyoussef24 May 6, 2025
4499676
fixing workflow link
khaledyoussef24 May 6, 2025
2b5a8c3
fixing workflow link
khaledyoussef24 May 7, 2025
5a7b0c9
fixing url work flow
khaledyoussef24 May 8, 2025
ffb01f6
fixing url work flow
khaledyoussef24 May 8, 2025
249b528
fixing url work flow
khaledyoussef24 May 8, 2025
7d9a2a9
trial 1
khaledyoussef24 May 8, 2025
01b1d7f
trial
khaledyoussef24 May 8, 2025
02ec2c1
Merge remote-tracking branch 'origin' into development_selenium_workf…
khaledyoussef24 May 8, 2025
e433efc
trial
khaledyoussef24 May 8, 2025
866d15d
trial
khaledyoussef24 May 8, 2025
a852a3d
trial
khaledyoussef24 May 8, 2025
eca183b
trial
khaledyoussef24 May 8, 2025
d313e5f
trial
khaledyoussef24 May 8, 2025
52e4a30
checking
khaledyoussef24 May 8, 2025
d57645b
trying remote
khaledyoussef24 May 8, 2025
b84de32
trying remote
khaledyoussef24 May 8, 2025
6c5b3f3
trying remote
khaledyoussef24 May 8, 2025
d3dac8c
step1
khaledyoussef24 May 11, 2025
e5bd3e4
step2
khaledyoussef24 May 11, 2025
c4a0be9
step3
khaledyoussef24 May 11, 2025
9bf7a40
trial 2 step 1
khaledyoussef24 May 11, 2025
cbf78ea
trial 2 step 2
khaledyoussef24 May 11, 2025
169a685
startegy 2
khaledyoussef24 May 15, 2025
f3a82e5
startegy 2 update 1
khaledyoussef24 May 15, 2025
076c6f1
startegy 2 update 2
khaledyoussef24 May 15, 2025
77e12e5
startegy 2 update 3
khaledyoussef24 May 15, 2025
8fd7e10
startegy 2 update 4
khaledyoussef24 May 15, 2025
9dae3e2
startegy 2 update 5
khaledyoussef24 May 15, 2025
668942f
startegy 2 update 6
khaledyoussef24 May 15, 2025
b4f0fd0
startegy 2 update 9
khaledyoussef24 May 15, 2025
1ebf141
fixing work flow uses
khaledyoussef24 May 15, 2025
430fa6c
fixing the priniting of the seed
khaledyoussef24 May 15, 2025
7632715
fixing the priniting of the seed
khaledyoussef24 May 15, 2025
0ab59b3
fixing the priniting of the seed
khaledyoussef24 May 15, 2025
6b6ba4e
Merge remote-tracking branch 'origin' into development_selenium_workf…
khaledyoussef24 May 15, 2025
da31eb2
Merge branch 'development' of https://github.com/threefoldtech/tfgrid…
khaledyoussef24 May 15, 2025
6c91ead
fixing seeds field
khaledyoussef24 May 15, 2025
dcf3ca8
fixing seeds field
khaledyoussef24 May 15, 2025
2321878
fixing seeds field
khaledyoussef24 May 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 97 additions & 22 deletions .github/workflows/playground_selenium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,115 @@ name: Playground Selenium Tests

on:
workflow_dispatch:
inputs:
network:
description: "Select network (dev, qa, test, main)"
required: true
default: dev
type: choice
options: [dev, qa, test, main]
mode:
description: "Select mode (build|remote)"
required: true
default: remote
type: choice
options: [build, remote]
schedule:
- cron: "0 6 * * *"

jobs:
selenium-run:
runs-on: ubuntu-latest

# Pass secrets in for Config.ini
env:
TFCHAIN_MNEMONICS: ${{ secrets.TFCHAIN_MNEMONICS }}
TFCHAIN_NODE_MNEMONICS: ${{ secrets.TFCHAIN_NODE_MNEMONICS }}
STELLAR_ADDRESS: ${{ secrets.STELLAR_ADDRESS }}
EMAIL: ${{ secrets.EMAIL }}

steps:
- name: Checkout
- name: Checkout code
uses: actions/checkout@v4
- name: Setting up Python

- name: Determine network + mode
id: vars
run: |
echo "network=${{ github.event.inputs.network }}" >> $GITHUB_OUTPUT
echo "mode=${{ github.event.inputs.mode }}" >> $GITHUB_OUTPUT

- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y xclip
- name: Installing all necessary packages
run: pip install -r packages/playground/tests/frontend_selenium/requirements.txt
- name: Node install

- name: Install Python deps (including pytest-html)
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r packages/playground/tests/frontend_selenium/requirements.txt
python3 -m pip install pytest-html

- name: Set up Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Yarn install
node-version: "18"

- name: Install Node deps
run: yarn install
- name: Lerna Build
run: yarn lerna run build
- name: Yarn Serve
run: make run project=playground &
- name: Wait for localhost
run: sleep 60
- name: Run tests
working-directory: ./packages/playground/tests/frontend_selenium

- name: Build & serve (only build mode)
if: ${{ steps.vars.outputs.mode == 'build' }}
run: |
yarn lerna run build
nohup make run project=playground > server.log 2>&1 &
echo "Waiting for http://localhost:5173…"
for i in {1..60}; do
curl -sf http://localhost:5173 && break
sleep 1
done

- name: Generate Config.ini via Python
working-directory: packages/playground/tests/frontend_selenium
env:
TFCHAIN_MNEMONICS: ${{ secrets.TFCHAIN_MNEMONICS }}
TFCHAIN_NODE_MNEMONICS: ${{ secrets.TFCHAIN_NODE_MNEMONICS }}
STELLAR_ADDRESS: ${{ secrets.STELLAR_ADDRESS }}
EMAIL: ${{ secrets.EMAIL }}
run: python -m pytest -v
NETWORK: ${{ steps.vars.outputs.network }}
MODE: ${{ steps.vars.outputs.mode }}
run: |
python3 - <<'EOF'
import os, configparser

def flatten(var):
return os.getenv(var, "").replace("\n", " ").strip()

net = os.environ["NETWORK"]
mode = os.environ["MODE"]
base_url = ("http://localhost:5173" if mode=="build"
else f"https://dashboard.{net}.grid.tf/")

cfg = configparser.ConfigParser()
cfg["Base"] = {
"port": "5173",
"net": net,
"base_url": base_url
}
cfg["Utils"] = {
"seed": flatten("TFCHAIN_MNEMONICS"),
"node_seed": flatten("TFCHAIN_NODE_MNEMONICS"),
"address": flatten("STELLAR_ADDRESS"),
"email": flatten("EMAIL")
}
with open("Config.ini", "w") as f:
cfg.write(f)
EOF

- name: Verify Config.ini exists and contents
working-directory: packages/playground/tests/frontend_selenium
run: |
echo "→ Files in $(pwd):"
ls -1
echo ""
echo "→ Config.ini contents:"
nl Config.ini

- name: Run Selenium tests
working-directory: packages/playground/tests/frontend_selenium
run: python3 -m pytest -v --html=report.html
8 changes: 0 additions & 8 deletions packages/playground/tests/frontend_selenium/Config.ini

This file was deleted.

17 changes: 9 additions & 8 deletions packages/playground/tests/frontend_selenium/selenium.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ There are two ways to run the Automation selenium tests:
yarn lerna run build
make run project=playground
```
If the build fails due to a memory issue, please use the following command

If the build fails due to a memory issue, please use the following command

```bash
export NODE_OPTIONS="--max-old-space-size=8192"
Expand Down Expand Up @@ -70,17 +71,17 @@ export NODE_OPTIONS="--max-old-space-size=8192"

- (Not Recommended) Install the recommended version of the pip package listed above for a stable run, or you can just install Python 3 and use the command:
- `pip install -r requirements.txt --break-system-packages` (Use this if you don't use any of the listed packages).
- (Recommended) Or use Virtual Environments:
- create an environment using
`python -m venv myenv`
- (Recommended) Or use Virtual Environments:
- create an environment using
`python -m venv myenv`
- activate it using
`source myenv/bin/activate`
`source myenv/bin/activate`
- install packages using
`pip install -r requirements.txt`.
`pip install -r requirements.txt`.
- You'll also need to install `Xvfb`, Run:
`sudo apt install xvfb`.
`sudo apt install xvfb`.
- You can run selenium tests with pytest through the command line using:
`python3 -m pytest -v`.
`python3 -m pytest -v`.

### More options to run tests

Expand Down
Loading