在标记的挂钩中调用自定义命令

时间:2019-03-04 10:33:25

标签: tags hook nightwatch.js

关于在 nightwatch.js 中使用钩子,我有一个两部分的问题。

首先,我想在我的 global.js 文件中添加一个before钩子,以仅具有特定标记的测试。

这是可能的,如果可以的话,如何将其添加到我的 global.js 脚本中。

其次,我想在钩上之前在其中添加自定义命令

这是否可行,如果可以,我又如何将其添加到我的 global.js 脚本中。

所以我在我的 global.js 脚本中,就像;

before: function (done) {
  '@tags';['query'], // name of tag associated with test script I want to run before the test script itself
    .internalAdviceLinks(); // name of the custom command I want to run before I run the test script code 
done()
},

以上(按预期方式)不起作用,但这是我所追求的基本想法。

非常感谢。

0 个答案:

没有答案