
Timo_Kuisma1
Hi, i am using the latest Katalon Studio version 5.3.
Cannot find the way how to open Test Suite Collection results index.html page from the disk (folder)?
At the this moment it is possible to do by UI navigating Reports --> suite name --> report --> Export as HTML
My goal is fire up test results from cmd (windows)
I have to use script like this way to see test results after test run done
cd C:\Katalon Studio\DataDrivenTest-master\Reports
for /f “delims=” %%i in (‘dir /b /s “C:\Katalon Studio\DataDrivenTest-master\Reports\Data Driven Test Suite\Report.html” 2^>nul’) do set DATADRIVEN=%%i
echo The most recently created file is %DATADRIVEN%
for /f “delims=” %%i in (‘dir /b /s “C:\Katalon Studio\DataDrivenTest-master\Reports\DemoAut\Report.html” 2^>nul’) do set DEMOAUT=%%i
echo The most recently created file is %DEMOAUT%
for /f “delims=” %%i in (‘dir /b /s “C:\Katalon Studio\DataDrivenTest-master\Reports\DatePicker\Report.html” 2^>nul’) do set DATEPICKER=%%i
echo The most recently created file is %DATEPICKER%
for /f “delims=” %%i in (‘dir /b /s “C:\Katalon Studio\DataDrivenTest-master\Reports\DatePickerTests\Report.html” 2^>nul’) do set JQUERY=%%i
echo The most recently created file is %JQUERY%
for /f “delims=” %%i in (‘dir /b /s “C:\Katalon Studio\DataDrivenTest-master\Reports\Katalon 5.3\Report.html” 2^>nul’) do set KATALON5_3=%%i
echo The most recently created file is %KATALON5_3%
echo starting test results in a browser…
start “” “file://%DATADRIVEN%”
start “” “file://%DEMOAUT%”
start “” “file://%DATEPICKER%”
start “” “file://%JQUERY%”
start “” “file://%KATALON5_3%”