InterviewStack.io LogoInterviewStack.io

Test Automation Scripting Questions

Writing the actual code inside a single automated test script: control flow, reusable helper functions, single-script parameterization (for example @pytest.mark.parametrize-style data tables), and translating an existing manual test case into an automated one. Covers script-level debugging (diagnosing and fixing a failing or flaky SINGLE script or test method: stale-element/timing exceptions, test-order dependencies, shared-state bugs between loop iterations) and improving the robustness of individual scripts (applying explicit waits, retry logic, and stable locators as part of fixing one script, assertions versus soft assertions). Scoped to the code inside one script or test method, using any browser/API automation tool. Excludes: designing or restructuring the shared framework that many scripts run on (layering, Page Object Model design, reporting hooks, base classes, CI/config wiring, choosing between automation tools, cross-framework migration planning, governance of shared test code), which belongs to test automation framework architecture. Excludes general-purpose Java or Python programming exercises not specific to authoring or maintaining a test script (data structures, OOP, algorithm/coding-round problems), which belong to programming fundamentals for test automation. Excludes locator-strategy and wait-strategy comparison AS A DEDICATED SUBJECT (comparing id/CSS/XPath, implicit-vs-explicit-wait theory, self-healing locators, cross-suite synchronization), which belongs to UI element locators and test synchronization. Excludes test-data management and provisioning STRATEGY at environment or multi-test scale (external data stores, compliance/privacy, parallel-CI isolation), which belongs to data-driven testing. Excludes suite-wide flaky-test detection, quarantine systems, and retry-vs-fix-root-cause policy, which belong to flaky test management and test reliability; this topic keeps only root-causing and fixing ONE script's own flaky failure. Excludes CI/pipeline test-selection and gating policy (smoke-vs-regression tagging, quality gates, suite-runtime-reduction planning), which belongs to pipeline testing and quality gates. Excludes test-level/pyramid conceptual placement, which belongs to test levels and the test pyramid. Excludes API-testing strategy (schema/contract validation, auth-flow testing as its own discipline), which belongs to API and contract testing; this topic keeps only the act of writing one API test script's code. Excludes accessibility-testing integration.

HardTechnical
103 practiced

Analyze the following API test pseudocode and identify the weakness that could allow the test to pass while the system under test is broken. Propose concrete changes to make the test robust and resistant to concurrency or eventual-consistency issues.

def test_create_user(api_client):
    before = api_client.get('/users').json()
    api_client.post('/users', json={'email':'bob@example.com'})
    after = api_client.get('/users').json()
    assert len(after) == len(before) + 1
MediumTechnical
62 practiced

Given the following pytest code, how many test cases will be executed and in what order relative to the fixture lifecycle? Explain the fixture scope behavior and what happens if teardown raises an exception.

import pytest

@pytest.fixture(scope='module')
def db():
    setup_database()
    yield
    teardown_database()

@pytest.mark.parametrize('email,valid', [
    ('a@b.com', True),
    ('bad-email', False)
])
def test_email_validator(db, email, valid):
    assert validate_email(email) == valid
EasyTechnical
63 practiced

Define a test fixture (setup/teardown) in the context of automated tests. Provide examples of resources commonly prepared and cleaned up by fixtures (e.g., database connections, browser instances, mock servers). Explain when to use method-level (per-test), class-level, or suite-level fixtures and the trade-offs of each choice.

MediumTechnical
70 practiced

You have an async Python function that sometimes raises TimeoutError when a downstream client is slow: async def fetch_with_retry(client, retries=3): for i in range(retries): try: return await client.fetch() except TimeoutError: pass raise TimeoutError. Write a pytest async unit test that uses monkeypatch or a fake client to assert the function retries at least twice before failing, and describe how you'd test backoff policies.

EasyTechnical
60 practiced

Using pytest in Python, write an example test function that uses @pytest.mark.parametrize to test a login API or UI with three credential sets: ('user1','pass1'), ('user2','pass2'), and ('invalid','wrong'). Show how to assert success for valid pairs and failure for the invalid pair. Keep the example concise and specify expected assertions.

Unlock Full Question Bank

Get access to all 8 Test Automation Scripting interview questions and detailed answers.

Sign in to Continue

Join thousands of developers preparing for their dream job.