--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.
Can you change your code like below and see if it works?
public void setUp() throws Exception
{
Selenium selenium = new DefaultSelenium("localhost", 4444, "*chrome", "https://www.google.com/");
import org.openqa.selenium.server.SeleniumServer;
public class GoogleSignIn extends SeleneseTestCase
{
private static SeleniumServer seleniumServer;
private static Selenium selenium = new DefaultSelenium("localhost",4444,"*chrome","http://www.google.com");
@Before
public static void setUp() throws Exception seleniumServer = new SeleniumServer();
seleniumServer.start();
selenium.start();
}
@After
public static void tearDown() throws Exception
{
selenium.stop();
seleniumServer.stop();
}
}