Posts

Showing posts from April, 2020

Free API Sites To Do Self Practice | Simple Practical Demo of API Methods | Introduction of API Testing

Image
Hello Dear Friends, I hope you are doing well. So guys in this article we are going to learn what an API is and what are the different methods or operations available to perform the API testing and are there any free or dummy APIs list available to do the self practice? So we will be seeing all above questions answer one by one and to watch practical demo click on mentioned link  Practical Demo Below are the questions which we are going to discuss in this article:        1) What is an API?        2) What are the methods available to do the API testing.        3) Free dummy API sites to do the self practice        4) What is postman used for? 1) What is an API? API stands for Application Programming Interface.  An API is a software intermediary that allows two applications to talk to each other. In other words, an API is the messenger that delivers your request to the provider that you're requesting it from and then delivers the response back

AutoIT V3 Tutorial | Download and installation steps | Practical Demo with Selenium And TestNG

Image
Hello Friends, In this article we are going to learn about AutoIT. Have you ever faced a problem while downloading files from web Application or uploading files in web Application and handling windows based alert or pop ups. Yes, if you are using Selenium WebDriver then you definitely went through this situation. So for that purpose only I have decided to write a simple article on AutoIT so it is useful for the beginner as well as experienced people. To watch practical demo click on URL :  Practical demo of AutoIT Below are the questions which we are going to discuss in this article: 1. What is AutoIT ? 2. Why to use AutoIT ? 3. How to download and setup AutoIT on windows system 4. How to write AutoIT script 5. How to automate application using AutoIT, Selenium And TestNG So let’s get started and learn step by step 1. What is AutoIT ?  AutoIT or AutoIT V3 is a freeware   scripting language tool and it is used for automating windows based GUI. AutoIT script

What Programming Languages Top IT Companies Used In Their Software And Programs

Image
Agenda : Have you known what top programming languages Top IT Companies Used In Their software development  And Programs? एजेंडा: क्या आप जानते हैं कि शीर्ष प्रोग्रामिंग कंपनियां अपने सॉफ्टवेयर विकास और कार्यक्रमों में किस शीर्ष आईटी कंपनियों का उपयोग करती हैं? Today we are going to see those popular languages in this article and this article will help you to resolve your some basic questions i.e which programming languages should we learn. आज हम इस लेख में उन लोकप्रिय भाषाओं को देखने जा रहे हैं और यह लेख आपको अपने कुछ बुनियादी सवालों को हल करने में मदद करेगा, यानी कौन सी प्रोग्रामिंग भाषाएं मुझे सीखनी चाहिए। Introduction : A programming language is a formal language, and it is a set of instructions that will generate the various kinds of output. परिचय: एक प्रोग्रामिंग भाषा एक औपचारिक भाषा है, और यह निर्देशों का एक सेट है जो विभिन्न प्रकार के आउटपुट उत्पन्न करेगा। We can build a strong web applications cross platform application using different progr

15 Best Programming & Technical Sites To Start Career In IT | Free Learning And Practice Platform

Image
Sr. No Site Name Description 1 CODE CONQUEST https://www.codeconquest.com/ Topics taught: HTML/CSS, JavaScript, PHP, Ruby, jQuery, Swift, Python and more... 2 CODEWARS https://www.codewars.com/ Coding challenges they offer: CoffeeScript, JavaScript, Python, Ruby, Java, Clojure, and Haskell 3 EDX https://www.edx.org/ Free programming courses offered: Java, C#, Python, and many more 4 COURSERA https://www.coursera.org/ What free coding courses they offer: Many (far beyond your basic coding/computer science topics) 5 FREECODECAMP https://www.freecodecamp.org/ Free coding certifications on offer: HTML, CSS, JavaScript, data visualization, DevTools, QA testing, Node.js, React, jQuery, and more 6 CODECADEMY https://www.codecademy.com/ What free coding lessons they offer: HTML & CSS, JavaScript, PHP, Python, Ruby, Angularj

Steps To Implement Stack In Java | Simple Data Structure Introduction

Image
Agenda : 1) What is Stack 2) What are the methods or operations performed in stack 3) What is the Time complexity of stack 4) How can we implement a stack 5) Simple example with output 1) What is Stack :   Stack is a linear data structure, which follows the sequential order. It followed the  LIFO(Last In First Out) or FILO(First In Last Out) insertion order. 2)  What are the methods or operations performed in stack : Basically there are five type of operations are available in stack and these are below, Push : This method will add the elements in stack if stack is not full, if it's full then it will show an overflow condition. Pop : This method will remove the elements from the stack. And elements are get removed by the reversed order in which they are pushed. If the stack is empty, then it will show an underflow condition. Peek or Top:  This method will returns top element of stack. isEmpty: This method will returns true if stack is empty, else fal

Importance Of JSONPath | JSONPath Vs XPath | Retrieve Data Using JSONPath Expressions

Image
Agenda: 1) What is JSONPath 2) Difference between JSONPath and XPath 3) JSONPath & XPath Expressions and Syntax 4) How retrieve data from JSON using JSON   Path     Practical Demo 1) What is JSONPath  JSONPath is a query language for the JSON, similar to XPATH for XML. JSONPath uses special notation to represent nodes and their connections to adjacent nodes in a JSONPath.  There are two styles of notation and they are same, namely Bracket : $[‘store’][‘book’][0][‘author’] Dot : $.store.book[0].author Where, The dollar sign ($) represents root member object 2) Difference between JSONPath and XPath        JSONPath  : JSONPath expressions always refer to a JSON structure Square brackets in JSONPath operate on the object or array addressed by the previous path fragment Indices always start by 0 E.g : $.store.book[*].author Currently only single quotes allowed inside of JSONPath expressions     XPath : XPath expression a