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.

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
98 practiced

Create a pytest fixture and conftest.py configuration that provides base_url and credentials to tests, and allows overriding them via pytest CLI options like --base-url and --env. Describe the fixture behavior and how tests would consume the configuration.

EasyTechnical
74 practiced

Write a pytest test in Python using Selenium WebDriver that automates a login flow on 'https://example.com/login'. The test must: open the URL, wait for input fields with ids 'username' and 'password', enter credentials 'testuser'/'P@ssw0rd', click the submit button with id 'login-btn', and assert the resulting page title contains 'Dashboard'. Use explicit waits and include a concise setup/teardown or fixture. Assume chromedriver is on PATH.

EasyTechnical
70 practiced

Read this simple Python unittest snippet and explain, step-by-step, what the test does, what the setUp method provides, and what happens in the framework when the assertion fails. Identify which parts are fixture, action, and verification.

import unittest

class TestLogin(unittest.TestCase):
    def setUp(self):
        self.user = {'username': 'alice', 'password': 'pass'}

    def test_login_status(self):
        status = login(self.user)
        self.assertEqual(status, 200)
MediumTechnical
76 practiced

A UI test passes on a developer machine but intermittently fails in CI with an 'element not found' error. Provide a step-by-step checklist to investigate this CI-only failure, listing what artifacts and environment differences you would inspect and two experiments you would run in CI to isolate the root cause.

Unlock Full Question Bank

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

Sign in to Continue

Join thousands of developers preparing for their dream job.