我一直试图使用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')
});
请问有人可以帮忙吗?
谢谢。