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…
diffmerge the tool I always wanted September 2, 2020 Our test output data contains several long output files with very long lines. If the test fails it is hard to see where to…
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…
Upload a file to a remote ssh server with java August 19, 2020 There is a new feature on our system. We receive from a third party a file. My tests create such a file. Then they…
Web automation in java with no browser August 12, 2020 I needed a framework to call a webserver, just to verify if something is shown on the page. I did not want to use selenium.
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.