Как мне запустить тест новичка из браузера?Можем ли мы сделать это на Python или в узле есть какая-нибудь опция?Извините, правда, я не разработчик.Нужна ваша поддержка и помощь, пожалуйста
mytest.js
const newman = require('newman');
newman.run({
collection: require('./Tests.postman_collection.json'),
environment: require('./Test.postman_environment.json'),
reporters: ['htmlextra', 'cli'],
reporter: {
htmlextra: {
export: './Reports/Feb25.html'
}
}
})
.on('start', function(err, args) { // on start of run, log to console
console.log('Running collection for you...');
})
.on('done', function(err, summary) {
if (err || summary.error) {
console.error('collection run encountered an error.');
} else {
console.log('collection run completed.');
}
});