Latest posts
-
Test Automation Interview Questions & Answers for SDET
1 Write a Java program for the largest number from three numbers 2. What is SDLC and STLC? And Explain its phases. SDLC (Software Development Life Cycle) is a process used by the software industry to design, develop, and test high-quality software. The phases include: STLC (Software Testing Life Cycle) is a sequence of different…
-
Postman Variables Cheat Sheet
Variables Scope:– Global Variables: Broad scope across workspace; ideal for testing.– Collection Variables: Scoped to a collection; independent of environments.– Environment Variables: Scoped to different environments; enables role-based access.– Data Variables: Derived from external files for collection runs.– Local Variables: Temporary, request-specific; cease after execution. Global Variables:– Setting: pm.globals.set(‘varKey’, varValue);– Getting: pm .globals.get(‘varKey’’);– Remove: pm.globals.unset(‘varKey’’);–…