Run given process from Terminal using Robot Framework
Problem:- How to execute external files (say test.py) as process using robot framework? Solution:- Approach 1 :- Using Run Process keyword, under “Process” library Step1:- Include “Process” library in settings Step2:- Use “Run Process” keyword as below Comment Using Run Process Keyword ${result} = Run Process python -c print ‘Hello, world!’ Should Be Equal ${result.stdout}…