Mar 101 minWatch me talk about testing with Java, Junit5, Selenium and best practicesHere is a recent recording with some good advice on testing with Java, Junit5, Selenium and best practices: https://www.youtube.com/watch...
Mar 30, 20213 minThe weird story of Selenium,the StaleElementReferenceException,the iframe,the List,the WebElementI write a lot of automated tests. Most of the times, it all goes nice and smooth, like a good song. But once in a while i run into an...
Nov 13, 20196 minUsing HashMaps in automated testsHashMaps are one of those Java concepts that can be very useful in automation testing, but are not widely used, because they seem to be...
Nov 1, 20184 minBetter Test Code Principles: Use proper naming, for everythingNaming is one of those underrated things when it comes to test automation code. Many times, when you look at variable or even test method...
Jan 30, 20186 minAutomated testing of translations by using property filesWhenever you need to write tests that check for a text in several languages, you don’t need to write one test for each language that you...
Oct 26, 20173 minTest design: write tests with proper console output to easily identify failure reasonsWhen automated test are running, they are either running on your own machine (when you write them or run them to check something), or in...
Aug 29, 20172 minIdentify the OS tests are running on with os.Name or SystemUtilsIn order to make your tests OS agnostic, sometimes, you need to create some additional logic to handle OS specifics. For example, if you...