我正在尝试使用进程库从 Robot Framework 执行 python 文件,如下所示:
Example Test Case
OperatingSystem.Should Exist ${CURDIR}/../../../../../server.py
Start Process python.exe ${CURDIR}/../../../../../server.py alias=PythonServer
OperatingSystem.Should Exist 正在通过,但 Start Process 行失败。我收到错误: FileNotFoundError: [WinError 2] 系统找不到指定的文件
我也尝试过给出 python.exe 后面的绝对路径,但这也给出了相同的错误。 我也尝试过给出我的 python.exe 的绝对路径
使用进程库从 Robot Framework 执行 python 文件的正确语法是什么?