Skip to main content

Posts

Showing posts from December, 2022

How to get a Wi-Fi password of any active Wi-Fi connection

 If you want to get the Fi-Wi password or If you don't know it and you have to find it then below are the windows commands by which you will bale to find out the password for any Wi-Fi connection. 1. First you need to use below commands on windows console in order to see all active Wi.Fi connections: Command Syntax: wlan show profile It will list all active available Wi-Fi connections. 2. Then From the list of all available Wi-Fi connections you can able to get the password of any one of them and can use it to connect. Below is the syntax for the same. Command Syntax: wlan show profile <any wifi connection name mention here> Key=clear Hope this artical will help you. Thanks for visit to my blog.

Introduction to The API / What is API

1. What is API ? ○ An API (Application Programming Interface) is a software intermediary that enables two applications to communicate with each other. It comprises a number of subroutine definitions, logs, and tools for creating application software. ○ In an API testing interview, you could be asked to give some API examples, here are the well-known ones: Google Maps API, Amazon Advertising API, Twitter API, YouTube API, etc. 2. What is API Testing? ○ In the modern development world, many web applications are designed based on three-tier architecture model. These are: ○ Presentation Tier – User Interface (UI) ○ Logic Tier – Business logic is written in this tier. It is also called Business Tier. (API) ○ Data Tier – Here information and data is stored and retrieved from a Database. (DB) ○ Ideally, these three layers (tiers) should not know anything about the platform, technology, and structure of each other. We can test UI with GUI testing tools and we can test logic tier (API) with API...