- bhaskerActive particpant
- Posts : 18
Join date : 2012-06-11
HOW TO RUN SERVER AUTOMATICALLY IN ECLIPSE USING SELENIUM RC
Thu Jun 14, 2012 5:31 pm
HI..
CAN U PLZ LET ME KNOW HOW TO RUN SERVER AUTOMATICALLY IN ECLIPSE USING SELENIUM RC WITHOUT RUNNING SERVER IN COMMAND PROMPT SEPARATELY.
CAN U PLZ LET ME KNOW HOW TO RUN SERVER AUTOMATICALLY IN ECLIPSE USING SELENIUM RC WITHOUT RUNNING SERVER IN COMMAND PROMPT SEPARATELY.
Re: HOW TO RUN SERVER AUTOMATICALLY IN ECLIPSE USING SELENIUM RC
Sat Jun 16, 2012 8:38 pm
package com.example.tests;
import org.junit.After;
import org.junit.Before;
import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
import com.thoughtworks.selenium.*;
import java.util.regex.Pattern;
import org.junit.Test;
public class Product extends SeleneseTestCase {
public Selenium selenium;
public SeleniumServer seleniumserver;
@Before
public void setUp() throws Exception {
RemoteControlConfiguration rc = new RemoteControlConfiguration();
seleniumserver = new SeleniumServer(rc);
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://www.google.com");
seleniumserver.start();
selenium.start();
}
seleniumserver.stop(); - add under @after
import org.junit.After;
import org.junit.Before;
import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
import com.thoughtworks.selenium.*;
import java.util.regex.Pattern;
import org.junit.Test;
public class Product extends SeleneseTestCase {
public Selenium selenium;
public SeleniumServer seleniumserver;
@Before
public void setUp() throws Exception {
RemoteControlConfiguration rc = new RemoteControlConfiguration();
seleniumserver = new SeleniumServer(rc);
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://www.google.com");
seleniumserver.start();
selenium.start();
}
seleniumserver.stop(); - add under @after
- bhaskerActive particpant
- Posts : 18
Join date : 2012-06-11
Re: HOW TO RUN SERVER AUTOMATICALLY IN ECLIPSE USING SELENIUM RC
Tue Jun 19, 2012 4:04 pm
thnqqqqqqq
- How to use User-Extension.js in Eclipse when Eclipse integrated with selenium standalone server
- [error] Could not connect to Selenium Server. Have you started the Selenium Server yet?
- selenium.setspeed not working witch selenium RC on eclipse
- How to delete cache automatically in selenium
- Can I have Selenium re-log into a page if I've been automatically logged out?
Permissions in this forum:
You cannot reply to topics in this forum