Days between two dates February 24, 2021 My current application under test has an API with some dates. I need to calculate in some automated tests the days between two dates….
Count number of digits in a string February 10, 2021 In this post, I am going to explain how to count the number of digits in a string with Python. I will explain how…
Three words in python strings February 3, 2021 My automated tests contains a lot of string manipulations. I do exercise a lot with programming. In this post I will solve a problem…
Sort numbers with python January 23, 2021 Sometimes we need to sort numbers. In this post I will give a solution a fictive sorting problem. I want to sort numbers with…
Unitary operators in java December 9, 2020 Unitary operators in java are symbols that applies to a set of variables. The operator returns a result. A simple example is the one…
Check for empty lists in python December 2, 2020 I use lists all the time in my code. Sometimes I have to check for empty lists in my python code. Introduction Lists are…
http basic authentication with selenium November 18, 2020 I want to automate a login page. This page requires the user to log in with basic http authentication. I want to automate this…
Wait for Vaadin in Selenium November 4, 2020 Our web project uses the Vaadin framework. Because the pages are not loaded in one time, we have to wait a certain time. For…