Selenium test in Java with Eclipse and JUnit

Its quite easy to run Selenium tests using Eclipse and JUnit. Basically all you need is to get Selenium RC: http://seleniumhq.org/download/ and get Eclipse (Eclipse Classic will do if you don’t need the rest, the Helios 3.6 already includes JUnit) http://www.eclipse.org/downloads/ to make things easier also get Selenium IDE (Firefox plugin for recoding tests and […]

Read more
Solution for Selenium already running on port problem

When running selenium server often it happens that it can’t start with the following error: “Selenium is already running on port 4444. Or some other service is.” This happens because Selenium uses the 4444 port as its default and if you already started selenium or some other application is using that port Selenium will be […]

Read more
Solution for Selenium IDE Export to C# problem

When using the Selenium IDE to generate C# tests users get the following error “Suite export not implemented for the cs-rc formatter”: This happens because there is an error in the code that can’t convert from the default HTML Format to C#. The workaround is to go to Options -> Format and then select C# […]

Read more