Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm getting this error when i'm trying to run my selenium test using mvn test command line ,the wondering is that i tried it before 3 days and it runs successfully :

------------------------------------------------------
T E S T S
-------------------------------------------------------
Running GoogleNavigationTest
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 45.672 sec <<< FAILURE!

Results :

   Failed tests:   testApp(GoogleNavigationTest): Unable to bind to locking port 70
   54 within 45000 ms

  Tests run: 1, Failures: 1, Errors: 0, Skipped: 0

Here's my test:

import java.util.List;

 import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.firefox.FirefoxDriver;
 import org.openqa.selenium.firefox.FirefoxProfile;
 import org.testng.annotations.Test;

public class GoogleNavigationTest {
@Test
public void testApp(){
    // The Firefox driver supports javascript 
    FirefoxProfile firefoxProfile = new FirefoxProfile();
    WebDriver driver = new FirefoxDriver();

    // Go to the Google Suggest home page
    driver.get("http://www.google.com/webhp?complete=1&hl=en");

    // Enter the query string "Cheese"
    WebElement query = driver.findElement(By.name("q"));
    query.sendKeys("Cheese");

    // Sleep until the div we want is visible or 5 seconds is over
    long end = System.currentTimeMillis() + 5000;
    while (System.currentTimeMillis() < end) {
        WebElement resultsDiv = driver.findElement(By.className("gssb_e"));

        // If results have been returned, the results are displayed in a drop down.
        if (resultsDiv.isDisplayed()) {
          break;
        }
    }

    // And now list the suggestions
    List<WebElement> allSuggestions =   
    driver.findElements(By.xpath("//td[@class='gssb_a gbqfsf']"));

    for (WebElement suggestion : allSuggestions) {
        System.out.println(suggestion.getText());
    }
     }
   }
share|improve this question
1  
Hv u verified whether theres sumtin runnin on port7054. Also if u r not using some specific firefoxprofile, then there's no need of creatin new ff profile. – niharika_neo Dec 10 '12 at 15:50
1  
What version of Firefox do you have? What version of Selenium do you have? – Arran Dec 10 '12 at 16:28
fierefox 17.0.1 , and <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.21.0</version> </dependency> – AmiraGL Dec 10 '12 at 16:34
i didn't create any firefox profile – AmiraGL Dec 10 '12 at 16:35

3 Answers

Selenium v2.21 does not support Firefox 17. In fact, Firefox 17 is only supported with version v2.27 which was released a couple of days ago.

Either downgrade Firefox or update Selenium.

May or may not be the reason for this particular error, but you must do one of the above to even have half a chance of getting it to work.

share|improve this answer

Based on answer found here

Its because of the more than one javaw.exe is running in the background. To view this Goto task manager and choose the processes tab. You can see that there will be more than one javaw.exe is running. Select the process javaw.exe one by one and click "End process" and Try running the script again.

share|improve this answer
i also tried it but the error persists – AmiraGL Feb 23 at 11:14

I just used the chromeDriver and it works fine .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.