Tag Archives: selenium-server

selenium failed to start browser in iexplore mode when selenium server is started dynamically in code

>In a previous post, i have written about how i have been starting/ stoping the selenium server dynamically. What i didnt mention was that i was not able to run my tests using Internet Explorer. I got this error This … Continue reading

Posted in Software Testing | Tagged , , , , , | 4 Comments

Start the Selenium Server dynamically

>I have been working on a test suite in java using testng as the testing framework. I could not have suggested any other test frame work as it allows me to do a lot of configurable setups and teardowns. Yeah … Continue reading

Posted in Software Testing | Tagged , , , , | 4 Comments

Setting user extensions when the Selenium Server has been started dynamically

>I hope this helps someone someday, I needed to set user extension for a selenium test suite, dynamically in the code as i was starting the Selenium server via same. public void startSeleniumServer(String port) { rcc = new RemoteControlConfiguration(); rcc.setPort(Integer.parseInt(port)); … Continue reading

Posted in Software Testing | Tagged , , , , , , | 1 Comment