i am trying to kill process in robot framework, although the log says that process is killed , i am still able to see the command prompt invoked by the process Library.
is there anyway to kill the invoked command prompt in Suite Teardown ?
*** Settings ***
Library Process
Suite Setup Generic Suite Setup
Suite TearDown Terminate All Processes kill=True
*** Test Cases ***
login
*** Keywords ***
Generic Suite Setup
#This is invoking cmd
#when i run this , got error as mentioned below
Run Process appium -p 4723
Run Process appium -p 4750
#I tried to include cmd , no error but can't see the cmd getting invoked
Run Process cmd appium -p 4750
My python version :2.7.14 pybot version : 3.0.2
After removing start & "cmd" i get the error
Parent suite setup failed: WindowsError: [Error 2] The system cannot find the file specified
Appium path is set in environment variables
Process Library
? – GoralightTerminate Process
? robotframework.org/robotframework/latest/libraries/… - It seems that you have, under theTerminate All Processes
, can you show us that? – Goralight