周末一直处于困境中。
我正在尝试创建一个Python应用程序,使用户能够运行.Robot文件(或测试用例)(来自Python内)
我试图通过使用'subprocess'模块运行这些文件,但我不断收到以下错误消息:
'FileNotFoundError:[WinError 2]系统无法找到该文件 指定的“
我已经加入了'import subprocess'
我还将.Robot测试用例的位置声明为变量:
Location = r'C:/Users/verti/PycharmProjects/ChristSax.com/ChristSaxTestSuite/PageSmokeTest.Robot'
在我的代码中,我尝试使用以下语句调用Robotframework文件:
def AutomatedSmokePage():
print("Automated Page Smoke Tests now running...")
subprocess.call(['pybot',Location])
我目前正在使用Python 3.6.1和Robot Framework 3.0.2版
任何帮助将不胜感激。如果您知道完成相同任务的更好方法,请告诉我。
答案 0 :(得分:2)
我使用stdout输出从python脚本运行外部命令的通用方法:
import sys
import subprocess
def run_process(command):
print("Running command: " + command)
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
while True:
if sys.version_info >= (3, 0):
nextline = str(p.stdout.readline(),"utf-8")
else:
nextline = p.stdout.readline()
if nextline == '' and p.poll() is not None:
break
sys.stdout.write(nextline)
sys.stdout.flush()
我仍然不知道当您尝试运行@Verv命令时会发生什么(可能在命令提示符下无法访问pybot),所以我建议尝试以下操作:
python_path = 'c:/Python36/python.exe -m robot.run'
Location ='C:/Users/verti/PycharmProjects/ChristSax.com/ChristSaxTestSuite/PageSmokeTest.Robot'
command=python_path+' '+Location
run_process(command)
检查可能表明错误的输出(在本地测试)。
答案 1 :(得分:1)
假设您在Windows平台上,并且您想要运行的机器人文件位于其他目录中
你可以使用子进程模块为你完成任务,如下所述
from subprocess import Popen
from subprocess import Popen, CREATE_NEW_CONSOLE,PIPE,STDOUT
import platform
class Server:
def __init__(self):
pass
def run_robotfiles(self,terminal,command1):
if platform.system()=='Windows':
self.terminal=terminal
self.command1=command1
self.command_server1=self.terminal+' '+self.command1
self.server1_start=Popen(self.command_server1,creationflags=CREATE_NEW_CONSOLE)
abc=Server()
#you can give path till the robot file or you can use a batch file
#K option tells cmd to run the command and keep the command window from closing. You may use /C instead to close the command window after the command finishes.
abc.run_robotfiles('cmd','/K pybot D:\Users\process.robot')