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…
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…
Generate your test data from a template October 28, 2020 Freemarker is a template engine in java to generate text output based on templates and data classes. You should write the templates in a…
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…
Java builder pattern for testers too October 14, 2020 The java builder pattern is an alternative way of constructing objects. The java builder pattern is useful for testers too. Look at the following examples.
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.