Wednesday, November 19, 2014
On 1:01 AM by Unknown No comments
Answer 57: You can specify port while running the selenium server as –
java -jar
selenium-server.jar –port 5555
Answer 58: You can first record tests in Selenium IDE and then use format
option to convert them in a language of your choice.
Answer 59: If you are using java then you can start Selenium server
using SeleniumServer class.
For this you need to
instantiate SeleniumServer and then call start () method
on it.
RemoteControlConfiguration
rc;
rc = new
RemoteControlConfiguration();
rc.setPort(4445);
SeleniumServer
seleniumserver=new SeleniumServer(rc);
seleniumserver.boot();
seleniumserver.start();
seleniumserver.getPort();
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment