节点配置
Selenium 网格节点配置驻留在节点本身上,并保存有关网络配置和节点功能的信息。可以通过各种方式应用配置:
- 默认配置
- JSON 配置
- 命令行配置
JSON 配置
JSON 文件中的节点配置分为两部分:
- 功能
- 组态
功能定义了支持的浏览器类型和版本,浏览器二进制文件的位置,每种浏览器类型的最大实例数等区域。
配置处理集线器和节点地址和端口等设置。
以下是 JSON 配置文件的示例:
{
"capabilities": [
{
"browserName": "firefox",
"acceptSslCerts": true,
"javascriptEnabled": true,
"takesScreenshot": false,
"firefox_profile": "",
"browser-version": "27",
"platform": "WINDOWS",
"maxInstances": 5,
"firefox_binary": "",
"cleanSession": true
},
{
"browserName": "chrome",
"maxInstances": 5,
"platform": "WINDOWS",
"webdriver.chrome.driver": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
},
{
"browserName": "internet explorer",
"maxInstances": 1,
"platform": "WINDOWS",
"webdriver.ie.driver": "C:/Program Files (x86)/Internet Explorer/iexplore.exe"
}
],
"configuration": {
"_comment" : "Configuration for Node",
"cleanUpCycle": 2000,
"timeout": 30000,
"proxy": "org.openqa.grid.selenium.proxy.WebDriverRemoteProxy",
"port": 5555,
"host": ip,
"register": true,
"hubPort": 4444,
"maxSessions": 5
}
}