码迷,mamicode.com
首页 > Windows程序 > 详细

katalon系列十四:执行Windows命令&获取项目路径

时间:2018-12-27 23:03:25      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:报错   UNC   alt   running   run   audio   运行   none   技术   

Katalon Studio中也可以运行Windows命令执行一些系统操作。

根据官方文档,在test case中输入命令:
cmd = ‘del E:\\shot\\*.xlsx E:\\shot\\*.zip‘
Runtime.getRuntime().exec(cmd)

运行报错
技术分享图片

网上搜到解决方案,修改cmd如下
cmd = ‘cmd.exe /c del E:\\shot\\*.xlsx E:\\shot\\*.zip‘

运行成功

除了直接运行cmd命令,也可以执行.bat文件,代码示例如下

import com.kms.katalon.core.configuration.RunConfiguration
/**
* Execute a batch file situated in the KS project directory.
* @param batchFile (String) e.g. "myfile.bat"
*/
static void runBatchFile(String batchFile) {
String bf = RunConfiguration.getProjectDir() + ‘/‘ + batchFile
comment("Running batch file: " + bf)
Runtime.runtime.exec(bf)
}

RunConfiguration.getProjectDir()即为获取项目路径,记得要导入相应的包

参考https://docs.katalon.com/katalon-studio/docs/execute-windows-commands.html

katalon系列十四:执行Windows命令&获取项目路径

标签:报错   UNC   alt   running   run   audio   运行   none   技术   

原文地址:https://www.cnblogs.com/songzhenhua/p/10187201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!