Have you participated in hiring and conducted interviews? Do you have a QA team lead?
Java
What are the important criteria and factors for you when choosing a job?
Tell me about the most challenging task for you.
Into which main subclasses is the Throwable class divided in Java? Which of them throws Selenide when a check fails (e.g., element.shouldBe(visible))?
You are testing the form for adding new products in the admin panel. You create a new product, click Save, and see a blank white screen. What are your next steps?
What did you have more of in testing all this time: UX/UI, backend, API integrations?
What do you think about the phrase 'Automate everything that can be automated'?
Tell about your background: where you started and about your last/current job?
If the main() method is executed, what result will be displayed in the console? private static boolean areEqual(String s1, String s2) { return s1 == s2; } public static void main() { var s1 = new String("Abc"); boolean result = areEqual(s1, "Abc"); System.out.println(result); }
How is HAVING used in SQL?
How to check that lists are equal in content, but order does not matter? List<String> actual = List.of("B", "A", "C"); List<String> expected = List.of("A", "B", "C");
What functionality would you choose for the first smoke suite of a streaming service (Netflix, Amazon, etc.)?
How would you test the "Add product to cart" endpoint? There is a limit: no more than 30 products can be added to the cart. Fields: productId - the id of the product to add quantity - optional, if not specified, the quantity will be 1 POST [link] Params Authorization Headers (8) Body none form-data x-www-form-urlencoded { "productId": 1, "quantity": 2 }
What can demotivate you at work?
Did you conduct the interview instead of the lead or assist him?
Why did you decide to look for a new place and what do you want to find?