7

我是 webdriver 的新手,需要一些帮助..

我在 Windows XP 上使用 Selenium 2.2.0 和 FF v7.0.1

我已经成功地在 IE 中录制和回放了一个 java 脚本,但是每当我尝试在 FF 中执行相同的脚本时,我都会收到以下错误消息:

45000 毫秒后无法连接到端口 7055 上的主机 127.0.0.1

我在很多地方读到过,如果我将 Firefox 版本降级到 3.6 脚本会正常工作,但我并不热衷于降级。有人可以告诉我我做错了什么吗?

package hisScripts;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;


public class WebdriverTest_1 {
private WebDriver driver;
private String baseUrl;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
    driver = new FirefoxDriver();
    //driver=new InternetExplorerDriver();
    baseUrl = "https://**********/";
    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}

@Test
public void testUntitled() throws Exception {
    driver.get(baseUrl + "/");
    driver.findElement(By.xpath("//a[contains(text(),'my profile')]")).click();
    driver.findElement(By.xpath("//a[contains(text(),'about the service')]")).click();
    driver.findElement(By.xpath("//a[contains(text(),'contact us')]")).click();
    driver.findElement(By.xpath("//a[contains(text(),'help')]")).click();
    driver.findElement(By.xpath("//a[contains(text(),'home')]")).click();
    driver.findElement(By.xpath("//a[contains(text(),'logout')]")).click();

}

@After
public void tearDown() throws Exception {
    driver.quit();
    String verificationErrorString = verificationErrors.toString();
    if (!"".equals(verificationErrorString)) {
        fail(verificationErrorString);
    }
}

private boolean isElementPresent(By by) {
    try {
        driver.findElement(by);
        return true;
    } catch (NoSuchElementException e) {
        return false;
    }
}

}

4

2 回答 2

8

您使用的硒版本非常旧。我认为 v2.2 不支持 firefox 10。最新的是 2.20。

在此处查看更改日志。从这里的注释来看,从 v2.19.0 开始支持 Firefox 10 中的本机事件,这意味着您需要 2.19 或更高版本才能支持 Firefox 10。

于 2012-04-04T21:33:43.750 回答
-1

这个问题是由于firefox版本和selenium jar文件版本的兼容性。使用最新的selenium jar文件。可以解决问题。

于 2016-03-04T17:16:36.573 回答