Posts

Showing posts from December, 2020

Handy tools/ features/ tips

Image
Quick Fix in Eclipe IDE

SQL

Image
SQL Tutorial 1: Overview on Database, DBMS/RDBMS, SQL |Database Components | SQL for Testers        ----------------------------------------------------------------------------------------------------------------------------- SQL Tutorial 2: Installing MySQL, Working with SQL Workbench & Command Line Clients MSSQL Commands: mysql> show databases; mysql> use <DB name>; mysql> show tables; mysql> select * from <table name>;   eg: mysql> select * from city; <Contd. to the ppt, link shared below> ----------------------------------------------------------------------------------------------------------------------------- Resources: https://www.youtube.com/playlist?list=PLUDwpEzHYYLt0aRs7gvyEEviMp_CoTO3q&disable_polymer=true https://www.slideshare.net/pavan5780/mysql-164020041/1

Full Stack QA/Automation Tester in 2021 | A Roadmap to Automation Tester

Image
  Ref: https://www.youtube.com/watch?v=NkxrHdZrkLE

Open Source contribution and related

 https://bugs.chromium.org/p/chromium/issues/detail?id=1160277#c3 https://issuetracker.google.com/issues?q=reporter:hcldeb@gmail.com

Division using ReadyAPI Data driven Approach

Image
  Project SOAPUI API testing using mathjs.org WADL.      Test Approach ·         Created Rest Project using the WADL: Web Application Description Language: §   http://api.mathjs.org   ·         Created test suite and test case   ·         Added following assertions   ·         Executed test in sequence and in parallel   ·         Added a Documentation to the project §   file:///C:/soapuidoc/wadl-report.html ·         Added properties at Project, Suit, Case and Step level   ·         Performed Data Driven Testing Using Excel   ·         Used Data Sink to write results     Data ·    ...

API Automation Testing using RestAssured(Java & TestNG)

Image
 API/Webservices Testing using RestAssured Part-4 | Rest Assured Framework How to implement the  Rest Assured Framework: To generate Extent Reports in TestNG: http://www.extentreports.com/ https://mvnrepository.com/artifact/com.aventstack/extentreports/5.0.6 ----------------------------------------------------------------------------------------------------------------------------- API/Webservices Testing using RestAssured Part-5 | Rest Assured Framework How to execute the  Rest Assured Automation Framework in multiple ways: Git & Github flow(specific to Eclipse IDE & using git plugin in eclipse): ----------------------------------------------------------------------------------------------------------------------------- Link: https://www.youtube.com/playlist?list=PLUDwpEzHYYLuMRzT6LFq4r8DwKZdcqHmY

Java Collections Framework

Image
 Collection:  Group of objects Single entity representing multiple objects Collection Framework: To represent a group of objects into a single entity we need certain number of classes and interfaces . And Collection Framework provides those classes and interfaces. Arrays Limitations of Arrays: 1. Arrays lets us store only homogenous or same kind of data or data of same type Workaround : Create Object Array or Array of object type: This can allow us to store  homogenous as well as  heterogeneous data 2. Array has limited size.  3. Has fixed size. Cannot increase or decrease the size at runtime. Means i t is not growable in nature. Means before we create an array we must know how many elements we are going to store in the array.  Not possible to add new or remove existing values during runtime. To do that we will need a programming logic. Cannot add more elements at runtime to the array and memory gets wasted if we do not use all the memory initially allocate...