Skip to main content

Posts

Showing posts from November, 2012

Hudson Configuration

Ever wondered where can you find the information on how your Hudson was setup? Well you can see all the properties and their values by visiting this link: https://<SystemName_IP_WhereHudson_IsSetup:5443/systemInfo On this page you will see all the System Properties and Environment Variables If you want to configure the setup of Hudson then you should go to https://<SystemName_IP_WhereHudson_IsSetup:5443/configure Enjoy! Happy Testing

Could not start Selenium session: You may not start more than one session at a time

Error is: java.lang.RuntimeException: Could not start Selenium session: You may not start more than one session at a time at com.thoughtworks.selenium.DefaultSelenium.start(DefaultSelenium.java:107)   If you get this error on Selenium then this might be the problem… If in your test you are using a webdriver to create the DefaultSelenium or Selenium object then remove this line from your code:         selenium.start(); Happy Testing