Tag Archives: method

Browser unaware Selenium tests. STEP 2: Creating the browser initialization methods for Chrome and Firefox

In this second post of the ‘browser unaware Selenium tests’ series, i will show what the methods that start Chrome and Firefox look like, based on the selected OSs from the previous post. Continue reading Browser unaware Selenium tests. STEP 2: Creating the browser initialization methods for Chrome and Firefox

Quick Tip: IntelliJ – easily updating method calls when method signature changes

The What

I wrote a Java method, whose signature contains a number of parameters. This method is called by many other methods (i use the method in my tests). After a while i realize one of the parameters is not needed anymore. I want to change the method signature and to update all its’ references throughout my code.

The How

Continue reading Quick Tip: IntelliJ – easily updating method calls when method signature changes