Part V: Tests for DELETE and POST
We have learned a lot in the previous sections, but the only method we used so far was HTTP get. It’s time to move on and learn to use other other methods, in particular, post and delete. They’re not the […]
Software Engineering in QA with Java
We have learned a lot in the previous sections, but the only method we used so far was HTTP get. It’s time to move on and learn to use other other methods, in particular, post and delete. They’re not the […]
In the previous section, we wrote a number of automated tests that verified responses’ headers, but headers is just part of the picture. We haven’t actually test what really matters: the body of the response message; the actual content. And […]
As the name of the section suggests, for now we will be writing simple get requests only, but I can assure you, we will still learn a lot of interesting things. Before we start writing tests, let’s set up our […]