브라우저 스탁에 내 야간 시계를 통합했습니다. 하나의 인스턴스를 실행할 때 제대로 작동합니다. 하지만 첫 번째 인스턴스가 작동하고 누군가 다른 시간대 (다른 브라우저 또는 다른 프로젝트의 다른 지점)에서 두 번째 테스트를 실행하려고하면 첫 번째 인스턴스에 "페이지에 연결할 수 없습니다"라는 오류가 표시되어 1 차 셀렌 서버 연결이 닫힐 수 있습니다. . 그것을하는 어떤 방법이 있겠습니까? Ofc는 browserstack에서 병렬 테스트를 위해 2 개의 공백을 사용할 수 있습니다. CONFIGS : nightwatch.conf.js브라우저 스탁에서 야간 시계의 여러 인스턴스를 실행하십시오.
const chromedriver = require('chromedriver');
require('nightwatch-cucumber')({
cucumberArgs: [
'--require', './tests/step_definitions/hooks.js',
'--require', './tests/step_definitions',
'--format', 'json:reports/cucumber.json',
'--format-options', '{"colorsEnabled":true}',
'./tests/features'
]
});
module.exports = {
output_folder: 'reports',
custom_assertions_path: 'tests/assertions',
custom_commands_path: "./node_modules/nightwatch-commands/commands",
live_output: true,
disable_colors: false,
test_settings: {
default: {
launch_url: 'http://pptm_nightwatch:3000',
selenium_host: 'pptm_hub',
desiredCapabilities: {
browserName: 'chrome',
javascriptEnabled: true,
acceptSslCerts: true,
loggingPrefs: {
'browser': 'ALL'
}
},
selenium: {
cli_args: {
'webdriver.chrome.driver': chromedriver.path
}
},
},
chrome: {
desiredCapabilities: {
browserName: 'chrome',
javascriptEnabled: true,
acceptSslCerts: true,
loggingPrefs: {
'browser': 'ALL'
}
},
selenium: {
cli_args: {
'webdriver.chrome.driver': chromedriver.path
}
}
},
}
};
nightwatch.browserstack.conf.js
const defaultConfig = require('./nightwatch.conf');
const browserstackConfig = {
selenium: {
start_process: false,
host: 'hub-cloud.browserstack.com',
port: 80,
},
test_settings: {
default: {
desiredCapabilities: {
'browserstack.user': "bla",
'browserstack.key': "bla",
'browserstack.local': true,
},
globals: defaultConfig.test_settings.default.globals,
},
edge: {
desiredCapabilities: {
browser: 'edge',
},
},
chrome: {
desiredCapabilities: {
browserName: 'chrome',
javascriptEnabled: true,
acceptSslCerts: true,
loggingPrefs: {
'browser': 'ALL'
}
},
},
},
};
const nightwatchConfig = Object.assign({}, defaultConfig, browserstackConfig);
Object.keys(nightwatchConfig.test_settings).forEach((key) => {
const config = nightwatchConfig.test_settings[key];
config.selenium_host = nightwatchConfig.selenium.host;
config.selenium_port = nightwatchConfig.selenium.port;
config.desiredCapabilities = Object.assign(
{},
nightwatchConfig.test_settings.default.desiredCapabilities,
config.desiredCapabilities,
);
});
module.exports = nightwatchConfig;
server.js는 :
var _ = require('lodash'),
fs = require('fs'),
path = require('path'),
express = require('express'),
cons = require('consolidate'),
bodyParser = require('body-parser');
var PORT = 3000;
function runServer(done) {
var app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.engine('html', cons.lodash);
app.set('views', path.join(__dirname, './templates'));
app.set('view engine', 'html');
app.get('/page/:pageId', function(req, res){
res.status(200).render(req.params.pageId, TEMPLATE_OPTIONS);
});
app.post('/form-endpoint', function (req, res) {
res.status(200).send('<body>POST(' + JSON.stringify(req.body)+')</body>');
});
var server = app.listen(PORT, function() {
done()
});
return server;
}
module.exports = runServer;
if (require.main === module) {
runServer(function() {
console.log("Starting server on port " + PORT + ". Please visit e.g. http://localhost:" + PORT + "/page/formSimple.html");
});
}