From 23f23117a22c660dfacba392a7e6cd9117b75c68 Mon Sep 17 00:00:00 2001 From: rabeeafaraj Date: Sat, 9 Aug 2025 12:54:02 +0300 Subject: [PATCH] yaml file update --- .github/workflows/ui-testing.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ui-testing.yaml b/.github/workflows/ui-testing.yaml index 7d55d9796..ca0826345 100644 --- a/.github/workflows/ui-testing.yaml +++ b/.github/workflows/ui-testing.yaml @@ -6,6 +6,25 @@ on: branches: - main + workflow_dispatch: + inputs: + environment: + description: 'Environment to test against' + required: true + default: 'staging' + type: choice + options: + - development + - staging + - production + browser: + description: 'Browser to run tests on' + required: true + default: 'chrome' + type: choice + options: + - chrome + - firefox jobs: selenium-tests: @@ -38,5 +57,6 @@ jobs: env: HEADLESS: true WEKAN_URL: http://52.214.162.101:80 + BROWSER: ${{ inputs.browser }} run: | pytest tests/ -v