且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Maven Surefire无法在Jenkins上实例化我的IReporter类

更新时间:2022-05-27 01:56:47

替换行(由于javax.swing.filechooser.FileSystemView而失败)

public static final String BACKUP_DIRECTORY =
        FileSystemView.getFileSystemView().getHomeDirectory().getAbsolutePath() + "\\Selenium Results\\";

通过

public static final String BACKUP_DIRECTORY =
        System.getProperty("user.home") + "\\Selenium Results\\";

它应该可以正常工作.