Skip to content

Commit

Permalink
HPCC-31857 - Modified code to as per updated selenium jar
Browse files Browse the repository at this point in the history
  • Loading branch information
Nisha-Bagdwal committed Jul 11, 2024
1 parent 941b314 commit 657ff6a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-ui-gh_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ jobs:
if: steps.check.outputs.runtests
shell: "bash"
run: |
export CLASSPATH=".:${{ inputs.asset-name }}-ecl_watch_ui_tests:${{ github.workspace }}/selenium-java-4.22.0/*:${{ github.workspace }}/testng-7.7.1.jar:${{ github.workspace }}/jackson-annotations-2.17.0.jar:${{ github.workspace }}/jackson-core-2.17.0.jar:${{ github.workspace }}/jackson-databind-2.17.0.jar:${{ github.workspace }}/jcommander-1.82.jar"
export CLASSPATH=".:${{ inputs.asset-name }}-ecl_watch_ui_tests:${{ github.workspace }}/testng-7.7.1.jar:${{ github.workspace }}/jackson-annotations-2.17.0.jar:${{ github.workspace }}/jackson-core-2.17.0.jar:${{ github.workspace }}/jackson-databind-2.17.0.jar:${{ github.workspace }}/jcommander-1.82.jar"
# Add all unzipped JAR files to the CLASSPATH
for jar in selenium-java-4.22.0/*.jar; do
export CLASSPATH="$CLASSPATH:${{ github.workspace }}/$jar"
done
pushd ${{ inputs.asset-name }}-ecl_watch_ui_tests
find . -iname '*.java' -type f -print -exec javac {} \;
java framework.TestRunner detail
Expand Down

0 comments on commit 657ff6a

Please sign in to comment.