packaging and recycled paper products
online service for lawyers and accountants ilex.by
Software QA Manual & Automation, Tel-Ran Haifa, Israel, 2025-2026, 330 academic hours
Business Analysis for IT, IT-Academy, Minsk, Belarus, 2021, 136 academic hours
Bachelor of International Law, European Humanities University, Vilnius, Lithuania, 2012-2016
public static String getProperty(String fileName, String key) {
Properties properties = new Properties();
try {
FileInputStream fileInputStream = new FileInputStream
("src/test/resources/properties" + File.separator + fileName);
properties.load(fileInputStream);
return properties.getProperty(key);
} catch (IOException e) {
System.out.println("exception created");
e.printStackTrace();
return null;
}
}