Execute testcase from cmd

Hi,
Is it possible to execute test case from cmd. I will need to do that cause my test suite will create test report to my gmail box and test case will open it from gmail box or should I do that in separately with java .jar project?

Yes, by Console Mode Execution.
see https://docs.katalon.com/display/KD/Console+Mode+Execution

Hi, I mean without test suite path by cmd, is this possible?

with Katalon Studio we are able to run first test suite and after that we will get test report (gmail) and then we can run only one test case, but cannot find out how this is possible to do by cmd

I meet the same problem。I did it according to @kazurayam’s advice, not work. No any tips.

C:\Program Files (x86)\Katalon_Studio_Windows_64-6.3.3\Katalon_Studio_Windows_64
-6.3.3>katalon.exe -noSplash -runMode=console -projectPath =C:\Users\ppsautofact
ory\Katalon Studio\APP_WGW\APP_WGW.prj -retry=0 -testSuitePath=“Test Suites/TO_A
PP” -browserType=“Chrome” -apiKey= b09a1c0c-84b8-4858-875f-bdc2b3bXXXXX

image

You have a white space in between -projectPath and =C:\...

-projectPath =C:\...

This would confuse katalon.exe. It will not be able to find out the project path.

Also you miss a pair of double quotes to enclose the value of -projectPath. You typed:

=C:\Users\ppsaoutfactory\Katalon Studio\APP_WGW_APP_WGW.prj

You should rather type:

="C:\Users\ppsaoutfactory\Katalon Studio\APP_WGW_APP_WGW.prj"