It is not that difficult to test an API. There are tools like postman that can do a lot for you.
In a previous blog I already explained how I did API calls with the python requests library. I also looked at setting up a new test environment with pytest.
I discovered lately some things in java that I did not know yet. The switch statement in the java language switch in java has some weird things.
My current application under test has an API with some dates. I need to calculate in some automated tests the days between two dates.
In this post, I am going to explain how to count the number of digits in a string with Python. I will explain how I extract the digits out Strings.
My automated tests contains a lot of string manipulations. I do exercise a lot with programming. In this post I will solve a problem to distinguish between words and numbers.
Sometimes we need to sort numbers. In this post I will give a solution a fictive sorting problem. I want to sort numbers with python.
Unitary operators in java are symbols that applies to a set of variables. The operator returns a result. A simple example is the one we know from mathematics.
I use lists all the time in my code. Sometimes I have to check for empty lists in my python code.
I want to automate a login page. This page requires the user to log in with basic http authentication. I want to automate this page that has http basic authentication with selenium.