1

我正在尝试使用fluintlenium编写硒测试,由于某种原因,当我尝试使用chrome驱动程序时,它只是在“数据”上打开chrome;页面并且不会继续到我给它的实际网址。当我使用 HtmlUnitDriver 时,它会成功运行测试,但使用 chrome 时它会卡在:

在端口 36888 上启动 ChromeDriver 2.15.322448 (****) 仅允许本地连接。

我知道它只是一条信息消息,但在那之后它不会继续,只是卡住它没有显示任何错误......

代码是:

public class IntegrationTest extends FluentTest {
public WebDriver driver;
@Override
public WebDriver getDefaultDriver() {
    driver = new ChromeDriver();
    return driver;
}
/**
 * add your integration test here
 */
@Test
public void title_of_bing_should_contain_search_query_name() {
    goTo("http://www.bing.com");
    fill("#sb_form_q").with("FluentLenium");
    submit("#sb_form_go");
    assertThat(title()).contains("FluentLenium");
}

}

我尝试使用硒driver.get("url");,但它也不起作用。

编辑:我如何运行测试?1. 我刚启动我的 selenium 服务器 2. 我使用 play 所以我运行命令 play test 或 2. 我使用 eclipse junit test runner 来运行单个测试。两个都不行...

4

1 回答 1

0

这并不意味着 chromedriver 没有启动。这只是一条信息消息,您只能在本地连接到它。

如果浏览器打开并且没有做任何进一步的事情,在你的情况下,这意味着你没有兼容的 chrome 和 chrome 驱动程序。如果你的 chrome 是最新的,那么 2.13 chromedriver 对你来说太旧了,试试 2.15

于 2015-04-08T15:46:59.100 回答