I am calling python method from robot keyword. But I do not want robot framework to wait until test is finished because I want to run that method continuously. How to continue running next test case? e.g. I am calling start logs (python method) from robot keyword
def start_logs(self):
subprocess.call('adb logcat > test.txt', shell=True)
After starting logs I want to run other test cases. But robot framework keeps waiting for above.