【发布时间】:2019-04-09 22:02:41
【问题描述】:
mY selenium java 代码在本地运行良好,并且在 windows 中安装了 Jenkins,但是当我在 Jenkins 中使用我的代码时,如何在 centos Os 中安装我有这个错误: 找不到文件 /var/lib/jenins/workspace/seleniumProject\resource\reportConfig.xml resource\testdata\edu_testdata_properties.yml(aucun fichier ou dossier de ce type)
jenkins 找不到所有目录:String PropertiesyamlFilePath = "resources\testdata\" + dataFileProperties;
当我用 / 它的工作更改 \ 但我无法在 Windows 中本地执行代码的问题时有什么想法吗?
String dataFileProperties = "EDU_TestData_Properties.yml";
String PropertiesyamlFilePath = "resources\\testdata\\" +
dataFileProperties;
【问题讨论】:
标签: java selenium jenkins centos