我有一个简单的测试来打开铬中的launch_url。但是我收到错误,因为无法检索任何新会话。
另外,我想知道如何在不运行网格的情况下使用夜巡。只是一个独立的实例。
以下是我使用的配置。
{
"src_folders" : ["tests"],
"output_folder" : "reports",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"page_objects_path" : "",
"globals_path" : "",
"selenium" : {
"start_process" : false,
"server_path" : "./bin/selenium-server-standalone-3.4.0.jar",
"log_path" : "",
"port" : 4444,
"cli_args" : {
"webdriver.chrome.driver" : "./bin/chromedriver.exe",
"webdriver.gecko.driver" : "",
"webdriver.edge.driver" : ""
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://127.0.0.1",
"selenium_port" : 4444,
"selenium_host" : "127.0.0.1",
"silent": true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "firefox",
"marionette": true
}
},
"chrome" : {
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true
}
},
"edge" : {
"desiredCapabilities": {
"browserName": "MicrosoftEdge"
}
}
}
}
当我使用命令夜巡 --env chrome 或简单的夜巡时运行夜巡时,它给了我以下错误
[Test1] Test Suite
======================
Running: Demo test
http://127.0.0.1
Error retrieving a new session from the selenium server
Connection refused! Is selenium server started?
{ status: 13,
value:
{ message: 'Error forwarding the new session Empty pool of VM for setup Capabilities [{acceptSslCerts=true, marionette=true, name=Test1, browserName=chrome, javascriptEnabled=true, platform=ANY}]',
class: 'org.openqa.grid.common.exception.GridException' } }
我的测试看起来像
module.exports = {
'Demo test' : function (browser) {
console.log(browser.launchUrl);
browser
.url(browser.launchUrl)
.end();
}
};
我可以看到启动 url 已登录到控制台,但浏览器未启动。我正在使用最新的 jar 文件和 chromedriver 二进制文件。
我刚才试了一下,这就是我发现的
在您的selenium
配置部分中,我看到您已将start_process
设置为false
。
"selenium" : {
"start_process" : false,
"server_path" : "./bin/selenium-server-standalone-3.4.0.jar",
"log_path" : "",
"port" : 4444,
"cli_args" : {
"webdriver.chrome.driver" : "./bin/chromedriver.exe",
"webdriver.gecko.driver" : "",
"webdriver.edge.driver" : ""
}
},
当您的值为false
时,您基本上可以摆脱此部分本身(因为它根本不会根据您的配置使用(
你实际上是在告诉夜巡,它不应该尝试自己启动一个硒服务器,而应该只连接到在端口4444
上运行的硒服务器(这些值是从test_settings
部分default
部分获得的。
"default" : {
"launch_url" : "http://www.google.com",
"selenium_port" : 4444,
"selenium_host" : "127.0.0.1",
"silent": false,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "firefox",
"marionette": true
}
},
到目前为止,我们很好。因此,在您运行nightwatch
命令之前,我猜测您启动了硒服务器,但模式不正确。
我想您使用以下命令启动了服务器
java -jar selenium-server-standalone-3.4.0.jar -role hub
这会导致启动Hub
。枢纽就像manager
。它不能自己完成工作(启动浏览器,打开网址,输入文本,单击链接等(。它需要一个可用的node
,以便它可以将其所有工作路由到节点。
错误Error forwarding the new session Empty pool of VM for setup Capabilities [{acceptSslCerts=true, marionette=true, name=Nightwatchtest, browserName=firefox, javascriptEnabled=true, platform=ANY}]'
本质上是Selenium Grid告诉您的方式,您没有连接任何节点以将其路由到。
因此,为了解决您的问题,您可以执行以下操作之一:
- 使用命令
java -jar selenium-server-standalone-3.4.0.jar
(或(在独立模式下启动 selenium 服务器 [既不作为集线器也不作为节点]
将 - 标志
start_process
翻转到配置文件中的true
,这将导致夜巡自行启动和停止服务器。