nightstatchをbrowserstackと統合しました。 1つのインスタンスを実行しているとき、正常に動作しています。しかし、1番目のインスタンスが動作しているときに誰かが2番目のテストを別のブラウザ(別のブラウザやプロジェクトの別のブランチから)で実行しようとすると、1番目のインスタンスに「ページに接続できません」というエラーが発生したため、 。それを行う方法は何ですか?私はbrowserstackで並列テストのために2つのスペースを利用できます。 Configsに: nightwatch.conf.jsbrowserstackでnightwatchの複数のインスタンスを実行する
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");
});
}