Blog

Thoughts on software development, technology, and more

REST-assured: useful tips
December 17, 2018

REST-assured: useful tips

In this article, I gathered useful tips on using REST-assured, one of the most common Java libraries to automate REST-API testing. All examples are vital, they are collected from my...

Testing Automation
Introduction in Cucumber with examples
December 15, 2018

Introduction in Cucumber with examples

1. Introduction Cucumber is a BDD (Behavioral Driven Development) testing framework. Using the framework to write repetitive scenarios with different permutations of inputs/outputs can be quite time-consuming, difficult to maintain...

Testing Automation
Type of constructors in java
December 12, 2018

Type of constructors in java

In this post we will explain type of constructors in java and what is the difference between constructors and methods. What is a constructor Constructor is a block of code...

Testing Automation
Reflection for hybrid testing framework with cucumber
December 11, 2018

Reflection for hybrid testing framework with cucumber

After a couple of time I manage to create a Selenium hybrid testing framework base on java reflection functional. In this post I will explain the base principles of this...

Testing Automation
Integrate cucumber with spring
September 03, 2018

Integrate cucumber with spring

1. Overview This is a quick guide to integrate the Cucumber testing framework with Spring. Cucumber is a very powerful testing framework written in the Ruby programming language, which follows...

Testing Automation
API Functional Tests with Cucumber and Rest-assured
August 24, 2018

API Functional Tests with Cucumber and Rest-assured

API Functional Tests with Cucumber and Rest-assured On projects where multiple systems undergo development at the same time, it’s crucial to maintain a clear picture of how they should interact....

Testing Automation
Integrate Cucumber framework with QMetry
August 21, 2018

Integrate Cucumber framework with QMetry

Integrate Cucumber framework with QMetry Introduction Cucumber is one of the tools for running automated tests. It combines business specification and test documentation into one – which results into executable...

Testing Automation
Six way to learn coding
August 14, 2018

Six way to learn coding

Six way to learn coding It’s not easy to learn to code, sometimes you need someone help, sometimes you need to found the super power from you body.  But in...

Testing Automation
Seven Kinds of Testers
August 14, 2018

Seven Kinds of Testers

Seven Kinds of Testers Most of my work is teaching, coaching, and evaluating testers. But as a humanist, I want to apply the Diversity Heuristic: our differences can make us...

Testing Automation
Introduction intro Cucumber Reports
August 10, 2018

Introduction intro Cucumber Reports

Introduction intro Cucumber Reports After a test Execution we need to generate a useful test report, cucumber provides some good functional for us. It is also require to understand the...

Testing Automation