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.
Write a sample Selenium WebDriver test (in Python or JavaScript) using the Page Object Model for the login flow. Your submission should show: a page object with selectors and login method, a parameterized test that uses multiple credential sets, and how setup and teardown are handled. Keep code compact but realistic.
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.
In your own words, explain what an automated test script is, what roles it plays in the QA process, and how it differs from a manual test case. Consider a typical web application and give 2-3 concrete examples of tasks commonly automated (for example: unit test for calculation logic, API contract test, and a simple login end-to-end check). Mention the benefits and one limitation of test automation.
In Java, write a Selenium example using Actions to perform drag-and-drop from a source element to a target element. Then explain why Actions.dragAndDrop sometimes fails for HTML5 drag-and-drop implementations and provide a JavaScript fallback approach that simulates HTML5 drag events via executeScript.
Diagnose a flaky Selenium test that intermittently raises ElementNotInteractableException when clicking a button. Describe likely root causes (e.g., element overlay, timing, animations, stale element), and provide concrete code-level fixes including alternative waits, JavaScript clicks, scrolling into view, or re-locating elements after DOM updates.
Unlock Full Question Bank
Get access to all 11 Test Automation Scripting interview questions and detailed answers.
Sign in to ContinueJoin thousands of developers preparing for their dream job.