jagannath.devPapershelfThe ArXiv Shelf: Featured Research on Agents and AI A Generalist Agent Agents are not Enough Automating Quality: Research Papers on Test Automation Software Testing with Large Language Models: Survey, Landscape, and Vision —> March 2024 Chatti...Jan 14, 2025·1 min read
jagannath.devMy 2025 BookshelfBooks The Art of Doing Science and Engineering: Learning to Learn by Richard Hamming Make your Bed by William H. McRaven The Distance of the Moon by Italo CalvinoJan 8, 2025·1 min read
jagannath.devMastering API Testing: A Comparison of HAR Files and Mocking TechniquesWhen testing API interactions, you have two primary options: using HAR (HTTP Archive) files or mocking. Each method has its strengths and weaknesses, and the choice between them depends on your specific testing needs. Use HAR Files for: Complex, mul...Sep 18, 2024·3 min read
jagannath.devMastering Playwright: Learn secure HAR-Based Mocking in PlaywrightTo start, you'll need to record all necessary network calls into a HAR (HTTP Archive) file. The process for doing so varies slightly depending on the browser you're using. Next, you'll want to sanitize your HAR file to remove any sensitive informatio...Sep 18, 2024·2 min read
jagannath.devMastering Playwright: Ignoring CORS Limitations for Efficient AutomationAdd the following options to your Playwright Config to disable CORS depending on your usecase. { use: { bypassCSP: true, // add this to disable cors launchOptions: { args: ['--disable-web-security'], // add this to di...Sep 17, 2024·1 min read