SShortSingh.
Back to feed

Software Testing Explained: A Beginner's Guide to Manual and Automation Testing

0
·2 views

Software testing is the process of verifying that an application functions as intended, helping teams catch bugs before products reach end users. Even minor defects can lead to significant issues, making testing a critical step in the software development lifecycle. There are two primary approaches: manual testing, where testers interact directly with the application to check outcomes, and automation testing, which uses tools like Selenium, Playwright, and Cypress to run repeated tests programmatically. Automation is particularly valuable when the same test scenarios must be executed multiple times at scale. Beginners are advised to start with manual testing before progressing to SQL, API testing, and automation frameworks.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

AI-Refactored SQL Queries Can Silently Drop Rows Even When They Run Faster

An AI-generated SQL rewrite that swaps a LEFT JOIN for an INNER JOIN may run faster but can silently omit rows where no matching parent record exists, changing query results without any obvious error. This is a common risk in legacy databases where orphaned records — such as orders tied to non-existent customers — are present. A quick visual check of query output is insufficient to catch the data loss, since returned rows still appear valid and complete. Developers are advised to treat AI-generated query changes as unverified patches and validate them by running a differential test that compares the full result sets of the original and rewritten queries. Including edge-case fixtures — such as orphaned rows, parents with no children, duplicates, and NULL values — in the test baseline helps ensure the check catches more than just join-type conversions.

0
ProgrammingDEV Community ·

DeepSeek Leads on Speed and Cost as Chinese AI Models Rival Western Giants

A cloud architect conducted a six-week benchmark study comparing four major Chinese AI model families — DeepSeek, Qwen, Kimi, and GLM — across latency, cost, and reliability metrics. The evaluation was prompted by a client needing to standardize on a model for a multi-region deployment processing 12 million requests per day. DeepSeek's V4 Flash emerged as the top price-performance pick at $0.25 per million output tokens, delivering consistent p99 latency under 800ms across 100,000 test requests. Qwen offered the broadest model catalog with strong vision capabilities, Kimi led on chain-of-thought reasoning benchmarks, and GLM excelled at Chinese-language tasks. All four model families support OpenAI-compatible APIs, making migration straightforward, though their operational characteristics vary significantly under real production loads.

0
ProgrammingDEV Community ·

Ouroboros tool blocks AI coding agents from starting until requests meet clarity threshold

An open-source tool called Ouroboros introduces an 'ambiguity gate' that prevents AI coding agents from generating code until a user's request meets a defined clarity score. The system scores requests across three dimensions — goal clarity, constraint clarity, and success-criteria clarity — and blocks spec generation until the overall ambiguity score falls below 0.2. Each dimension also has its own minimum floor, so strong scores in one area cannot compensate for vagueness in another. Users retain the option to override the gate and force spec generation, making vagueness a deliberate choice rather than an accidental one. The tool aims to shift iteration from the costly post-code review stage to an earlier interview phase, where clarifying a wrong assumption requires only an answered question rather than a discarded implementation.