How to run windows bat file from robotframe work

Hi Team,
I am very new to Robot Frame work. I need to run one batch file from robot frame work.
Could you please support me.

Thanks,
Nikhil

Hi

*** Settings ***
Library    Process

*** Test Case ***
Launch Bat File
    Run Process       ${CURDIR}/script/script.bat

Thanks

EDIT see Process library for documentation

1 Like

Hi Nikhil,

In addition to Daryl’s (@_daryl ) answer there is also Run, Run And Return Rc, and Run And Return Rc And Output from the OperatingSystem Library if you need them, but in most cases Daryl’s is what you need.

Dave.

1 Like