public static String getFilePath()

in src/main/java/platform/qa/base/utils/CustomFileUtils.java [92:99]


    public static String getFilePath(String filePath) {
        String endPath = "";
        if (filePath.contains("/")) {
            String endPathTmp = filePath.substring(0, filePath.lastIndexOf("/"));
            endPath = endPathTmp.startsWith("/") ? endPathTmp.substring(1) : endPathTmp;
        }
        return TEST_RESOURCES_FOLDER + endPath;
    }