Hi everybody,
I have purchased a KSE + KRE license pack and I´m trying to integrate my katalon analysis into github.
I have create the tests in Katalon Studio Enterprise 10.0.1 and execute in chrome browser of a windows machine. When I opened the html report it show that 9 test passed and 2 failed
Ok, perfect. Now I´m trying to get the same results in github using a windows machine, the same browser and the same katalon version.
But after the Github integration using this code to execute the katalon action:
- name: Execute Test Suite Test
uses: katalon-studio/katalon-studio-github-action@v4.0
with:
version: '10.0.1'
projectPath: '${{ github.workspace }}'
args: '-noSplash -retry=0 -browserType="Chrome" -testSuitePath="Test Suites/MX" -apiKey= ${{ secrets.KATALON_API_KEY }} -executionProfile="QA_Mexico" --config -webui.autoUpdateDrivers=true'
This error is given:
Is not possible to use Katalon Studio Enterprise + Github Actions with version 10.0.1???
I Have read some posts like that - Katalon with Github Action integration and it said that “and also you need to use katalon with v9.6.0 on the github actions,
it will failed if you are using v9.7.3
or `v10.0.0”.
After reading that I have changed the katalon version in the Github Action to version: ‘9.6.0’
The execution went well, with errors but ok
but when I opened the Html report in order to compare the results with the katalon Studio, they are not what I was expecting. Only 3 Passed but 8 Failed
Could the katalon version has any influence on that?
Any Ideas to the same results on Katalon Studio Enterprise 10.0.1 and Github Action executions? because it is needed in order to validate all the tests
Thanks In advance