是的,看到这个网址:http://webdriver.io/guide/testrunner/gettingstarted.html
如果您启动 wdio 配置,将生成一个名为 wdio.conf.js 的文件,在此文件上存在用于在测试之后或之前启动脚本的函数,我展示了包含此文件的函数示例:
// =====
// Hooks
// =====
// Run functions before or after the test. If one of them returns with a promise, WebdriverIO
// will wait until that promise got resolved to continue.
//
// Gets executed before all workers get launched.
onPrepare: function() {
// do something
},
//
// Gets executed before test execution begins. At this point you will have access to all global
// variables like `browser`. It is the perfect place to define custom commands.
before: function() {
// do something
},
//
// Gets executed after all tests are done. You still have access to all global variables from
// the test.
after: function(failures, pid) {
// do something
},
//
// Gets executed after all workers got shut down and the process is about to exit. It is not
// possible to defer the end of the process using a promise.
onComplete: function() {
// do something
}
重要的是,如果你异步启动一个脚本,并且你在清理数据库的那一刻等待回调,所以你需要一个promise,否则下一步钩子将启动而不等待上一个函数钩子,例如:
onPrepare: function() {
return new Promise(function(resolve, reject) {
sauceConnectLauncher({
username: 'the_pianist2',
accessKey: '67224e83a-1cf7440d-8c88-857c4d3cde49',
}, function (err, sauceConnectProcess) {
if (err) {
return reject(err);
}
console.log('success');
resolve();
});
});
},