Windows batch command:

command line :

cd D:\Katalon_Studio_Windows_64-5.3.1>katalon --args -runMode=console -consoleLog -
projectPath=“D:\prj.prj” -ret
ry=0 -testSuitePath=“Test Suites/eg” -browserType=“Firefox”

Above program executes successfully through command line.

windows batch command how to write it in Jenkins?

what needs to be written prior to katalon?

eg cd D:\Katalon_Studio_Windows_64-5.3.1> or

D:\Katalon_Studio_Windows_64-5.3.1> then followed by below command line script.

katalon -noSplash -runMode=console -consoleLog -projectPath=“D:\KATALON_REPO\test.prj” -retry=0 -testSuitePath=“Test Suites/eg” -browserType=“Firefox”

Please suggest.