Posts

API Interview Questions MCQs

Image
If you are really interested in API Testing, this article covers every aspect of it. We have covered 2 major tools for API testing - SOAP UI and Postman in a very detailed manner. Theoretically, you will be able to answer the API related questions confidently once you have gone through this article. API Interview Questions MCQs Which API method can be called a SAFE one? If it doesn't change the state of a resource on the server. It should perform a read-only operation. If it stores the value of the response for specific response and saves new request to server. What is true about SOAP API? Data can be represented in different formats(JSON, XML, etc..) It is an object acces protocol Highly standardized It is an architectural style Each resource is represented by a unique URL XML is the only data representation format What is TRUE about redirect status codes? All 5xx status codes belong to them Indicate that the client has sent invalid request and server cannot process it. All 3xx st...

Understanding GIT Bash

In this article we will learn about Git Bash. Bash is an acronym of Born against shell. I have just started using this in my current project and have been moved to Devops part. Understanding GIT Bash GIT Bash is used by multiple developers/ testers to share their code with each other after multiple revisions. This is very useful if your project size is bigger and multiple people are working in the same project. You can push and pull the Github/ gitlab repositories using Git Bash easily. Common Commands in GIT Bash List Command - ls in table format - ls  - l to view hidden files - ls -la Change directory - cd cd moves you to your root folder cd abc moves you to abc folder Clear page - clear Exit - exit Make Directory - mkdir "folder name" Example - mkdir "01.Sample" Remove directory - rmdir / rm - rf "folder name" Example - rmdir 01 + click TAB Create new file - touch + extension Example - touch sample.txt touch sample.pptx touch sample.xlsx Remove ...

Interview Cracker - Cheat sheet - Automation Testing

Image
 In this article we will share cheat sheet for testing. Interview Cracker - Cheat sheet - Automation Testing QA Automation interview real time que. Can you brief me about yourself? Hi, my name is Xyz.   I started my career as a Testing Executive 4.5 years back with Infosys currently I am working as Test Engineer. My responsibility is to understand Business Requirement Specification and High-Level scenarios and to convert them into test cases & Automation scripts if required.   Execution of test cases and reporting of defect to the developer if there any and get them fixed. I have experience on Functional, Automation, Regression, Smoke, Sanity, Web accessibility, Web Analytics, Mobile Testing. In my previous project I have worked on Automation testing where we have used Selenium with java and TestNG Cucumber framework for BDD approach. We have used Page object model where we have separated our test cases with page objects, and we performed testing on the same. For buil...