Skip to main content

Posts

Showing posts with the label drop down dropdown selenium

Selenium Rare Tips - Part I

Hi all, Here I am going to list out some rare and useful tips for selenium users. 1. Start/Shutdown SeleniumServer in proper way public   static   void  startSeleniumServer ( )   throws   Exception   {           try   {          ServerSocket  serverSocket  =   new   ServerSocket ( RemoteControlConfiguration. DEFAULT_PORT ) ;         serverSocket. close ( ) ;                          //Server not up, start it                  try   {                          RemoteControlConfiguration rcc  =   new  RemoteControlConfiguration ( ) ;                          rcc. setPort ( Remo...