Have you used feature flags in your work?
QA / QA Automation
Tell us about your current team: what tasks do you perform — product-related or infrastructure — and what is the tester's role in the team?
What happens to the request after entering the domain in the browser and pressing Enter?
Tell me about your current project, team, and work tasks
Have you participated in code review of automated tests?
How long did it take to complete this task?
How have you tested the interaction of multiple feature flags and avoided combinatorial explosion?
How do you currently use AI tools in your work?
What is your experience with flaky tests and what unusual causes of their instability have you encountered?
In what order will the fixtures run? import pytest @pytest.fixture(scope="session") def setup_api_logs(): print("A") @pytest.fixture(scope="module") def db_container(): print("B") @pytest.fixture(scope="function", autouse=True) def api_client(db_container): print("C") @pytest.fixture(scope="function") def auth_token(): print("D") def test_create_order(auth_token): assert True
Have you participated in releases?
Have you encountered problems with test data?
Propose test cases for testing the API for creating a product. Method: POST URL: /api/v1/products Requirements: name: only Latin letters, up to 255 characters inclusive price: integer, maximum allowed value 5000 CODE EXAMPLE { "name": "string", "price": int }
Do you know the command to download an image from Docker Hub?
How to call each method of class A?
Tell us about some interesting technical challenges from your experience.
What do you pay the most attention to when reviewing someone else's code and autotests?
What are hooks used for in pytest? Have you worked with them, and if so, which ones?
How else can you verify that user deletion was successful?
What types are available in Python?