我试图使用php文件来运行测试并获得结果。 PHP中的内容如下所示:
<html>
<body style="background-color:#CCCCFF;">
<h1>Result of SimplePolicyTest:</h1>
<?php
$filename='results_'.date('Y-m-d_H-i-s').'_simple-policy.php';
$path='/var/www/qa/automation/results/';
$destination=$path.$filename;
$cmd='/var/www/selenium/projects/QA\ Automation/grid/./SimplePolicyTest | tee -a '.$destination;
echo $cmd;
system($cmd);
?>
</body>
</html>
bash文件中的内容是启动selenium测试。但结果是我在页面上完成测试后得到了测试结果。但是,找不到所需的文件。我现在正在起诉系统。有没有办法实时在寻呼机上输出?
答案 0 :(得分:0)
很少有建议:
tee
它到另一个文件&amp;然后加入它。|
中是否可以使用system
。