Katalon Studio Github Action: Is there any way to update version of the browser?

I’m trying to update version of the chromedriver when run in Katalon Studio Github Action the test is fail. Can you guys help me update ?.

![image|690x346](upload://x2wGBjnkpJlcSrpY3lG4iqOfwpF.png)

These are the parameters I am using:

name: CI
on:
  workflow_dispatch:
  pull_request:
    branches: [ master ]
jobs:
  build:
    runs-on: windows-latest
    steps:
    - name: Checkout
      uses: actions/checkout@v2
    - name: Download ChromeDriver
      run: |
          curl -L https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.109/win32/chromedriver-win32.zip -o chromedriver.zip
    - name: Unzip ChromeDriver
      run: |
          unzip chromedriver.zip
    - name: Replace existing ChromeDriver
      run: |
        move chromedriver.exe "C:\Users\runneradmin\.katalon\8.5.5\Katalon_Studio_Engine_Windows_64-8.5.5\configuration\resources\drivers"
    - name: Katalon Studio Github Action
      uses: katalon-studio/katalon-studio-github-action@v3.0
      with:
          version: '8.5.5'
          projectPath: '${{ github.workspace }}'
          args: '-noSplash -retry=0 -browserType=Chrome -statusDelay=15 -testSuitePath="Test Suites/TS_RegressionTest" -apiKey=${{ secrets.KATALON_API_KEY }} --config -webui.autoUpdateDrivers=true '
    - name: Upload Reports
      if: always()
      uses: actions/upload-artifact@v4
      with:
        name: Katalon Reports
        path: ${{ github.workspace }}/Reports/**/*
1 Like

image is not visible

Hi,

Thank you for posting your question. Can you please reupload the screenshot and also, provide more information such as the version of Katalon and chromeversion you are going to update?

1 Like

Try to latest version instead of 8.5.5, the web driver will auto updated with parameter --config -webui.autoUpdateDrivers=true