Solution for – Could not start Selenium Session : Connection timed out

If you get the “Could not start Selenium Session : Connection timed out” while running a test scenario it is usually due to the ports not matching for the Server and the client and results in “Selenium server not able to make a connection with the local client machine”. a sample error message: The solution […]

Read more
Solution for Selenium IDE – Your browser doesnt support Xml Http Request

If you get the “Your browser doesnt support Xml Http Request” error while running tests in Selenium IDE even if its shows that all tests passed below is the cure for it: This issue only happens on versions of Selenium IDE prior to 1.0.6 So there are two workarounds to this problem: 1) Get the […]

Read more
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 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