About me
As a driven and passionate QA specialist, I am currently expanding my skills in HTML, CSS and JavaScript.
With a background as a product manager on Agile project, I have gained valuable experience in the software development life cycle.
Work Experience
YurSpektr LLC, Minsk, Belarus (2016-2021)
online service for lawyers and accountants ilex.by
Positions
- Product Manager (2 years)
- Search Engine Optimization Specialist (1 year 3 months)
- Contract Law Department Specialist (1 year 7 months)
Responsibilities
- customer research/development/support
- presentations for CEO and customers
- brainstorming for new features
- software requirements approval
- department management
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;
}
}