- Klau
- Posts : 8
Join date : 2012-12-04
Location : Romania
Time out error
Tue Feb 11, 2014 7:13 pm
Hi,
I try to automate facebook login using Selenium RC. When the script should click on Login button a timeout error appears in JUnit in failure trace.
In Selenium IDE the script it's working correctly.
Where is the problem? See the failure trace from the attached image.
Thank you!
https://i.servimg.com/u/f58/18/15/86/71/fb11.jpg
I try to automate facebook login using Selenium RC. When the script should click on Login button a timeout error appears in JUnit in failure trace.
In Selenium IDE the script it's working correctly.
Where is the problem? See the failure trace from the attached image.
Thank you!
- Code:
package com.example.tests;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
import java.util.regex.Pattern;
public class Facebook_login extends SeleneseTestCase {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox", "https://www.facebook.com/");
selenium.setSpeed("2000");
selenium.start();
selenium.windowMaximize();
selenium.windowFocus();
}
@Test
public void testFacebook() throws Exception {
selenium.open("/");
selenium.type("//*[@id='email']", "email_address");// enter email
selenium.type("//*[@id='pass']", "password");//enter pass
selenium.click("//*[@id='u_0_l']");//click on Log in button
selenium.waitForPageToLoad("30000");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
https://i.servimg.com/u/f58/18/15/86/71/fb11.jpg
- Dynamic Object throwing error at run time
- When I open a new window,it raise error time out in firefox .
- ERROR: Command execution failure. Please search the forum at http://clearspace.openqa.org for error details from the log window. The error message is: Permission denied
- Getting the error msg 'Error: Could not find or load main class java-jar' while executing the selenium code in eclipse
- How to resolve this error---->[error] Element id=ui-active-menuitem not found
Permissions in this forum:
You cannot reply to topics in this forum