testcafe正在打开浏览器,默认为/ browser / connect / ....,无法执行测试

时间:2019-02-09 00:04:23

标签: automated-tests e2e-testing testcafe

我一直试图使用nodejs运行testcafe,但是浏览器无法继续执行脚本。它在控制台中显示此错误: 无法建立一个或多个指定的浏览器连接。这可能是由网络问题或远程设备故障引起的。

我只有一个简单的测试用例。

fixture`Home page`
  .page`http://www.google.com`;  // specify the start page

test("The heading should be...", async t => {
  const title = Selector('h1');
  await t.expect('t').eql('t')
});

请问有人可以帮忙吗?

谢谢。

1 个答案:

答案 0 :(得分:3)

可能需要在TestCafe命令行中添加选项--hostname localhost和/或--proxy