Hi there, I am working around to setup automation job in git action and currently I got an error (@IvyWebTest: [ERROR] SessionNotCreated Could not start a new session. Message: binary is not a Firefox executable ) maybe because of FirefoxDriver in UBUNTU server, like as image below:


And my config in yaml file in git action:
automate-on-new-release:
runs-on: [self-hosted, AA-BOLT-UBUNTU]
needs: [build-release, deploy-release]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup Java & Maven dependency caching
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
cache: 'maven'
- name: Run Maven Build
working-directory: offer-process
run: |
mvn install -DskipTests=true
- name: Run Maven Verify
working-directory: offer-process-test
run: |
ls
mvn verify
Hope someone can give me a solution to this problem. Thanks you for your interest in this topic 😊