RSRAHAT SHARMAincommand-line-interface.hashnode.dev·Aug 18, 2025 · 2 min readCreating JAVA WEB-APP1. Create the Project File → New → Project Select Maven as the build system. Check “Create from archetype”, then choose org.apache.maven.archetypes:maven-archetype-webapp. IntelliJ will fetch this standard archetype from Maven Central. JavaPointer...00
RSRAHAT SHARMAincommand-line-interface.hashnode.dev·Aug 14, 2025 · 6 min readHooks in PytestHooks in pytest are special functions that let you tap into pytest’s test execution process — before, during, and after certain events — to customize behavior, collect data, or modify reports. 1️⃣ What Are Hooks in pytest? Hooks are functions defin...00
RSRAHAT SHARMAincommand-line-interface.hashnode.dev·Aug 14, 2025 · 5 min readAllure Report Part 1Allure is an open-source, framework-agnostic test reporting tool that turns raw test results (XML + attachments) into a rich, interactive HTML report with steps, attachments (screenshots/videos/logs), labels (feature/story/severity), history, and cus...00
RSRAHAT SHARMAincommand-line-interface.hashnode.dev·Aug 13, 2025 · 10 min readPython1. Defining Functions with def In Python, a function is a reusable block of code that performs a specific task.We define it using the def keyword: pythonCopyEditdef greet(): print("Hello, Python learner!") How to call it: pythonCopyEditgreet() ...00
RSRAHAT SHARMAincommand-line-interface.hashnode.dev·Aug 11, 2025 · 10 min readJ-MeterCreating a Script : I’ll use https://dummyjson.com/ (a public API for testing) so you can run it without needing a private server. 📌 Scenario Login with username & password Search for a product Logout Step-by-Step JMeter Script 1️⃣ Create a N...00