rsschool-cv

Aksana Shor

Contact information

Skills

Work Experience

Infinya Packaging Ltd (2024-2025)

packaging and recycled paper products

Positions

Responsibilities

YurSpektr LLC, Minsk, Belarus (2016-2021)

online service for lawyers and accountants ilex.by

Positions

Responsibilities

Education

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

Languages

Code Example

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;
        }
    }