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…
Underscores in Java and Python numbers October 21, 2020 In some areas in the world people use commas as thousand separators. I sometimes use points to separate them. Most of the time I…
Saving internal data in a file with Python October 7, 2020 Some automated tests failed. In this case you want to analyse what went wrong. It can be hard to analyse the cause of the problem….
Create a mock application with Flask September 30, 2020 At the start of a new project, the testing is very easy. The software guys create a basic application that you have to test….
Create a python test environment from scratch September 9, 2020 To automate tests, you can make use of a test environment. It is possible to make it by yourself. But why should you? There…
API Reply validation with Python August 26, 2020 In a previous post we did created some tests with hypothesis to generate input date for us. In that post, there was a validation…
Let your test automation choose the input data August 5, 2020 What if you do not need to figure out what test data you have to put into your tests? That sounds like something impossible? No it is not. There is a way to do this. This post will show how to test with a framework that will find edge cases.
API testing with python requests July 22, 2020 API testing is not that difficult. If you use python, there is a library written for us. It even can handle bearer tokens to log in.