方案完成后如何停止Cucumingjs?

时间:2019-05-21 16:40:35

标签: node.js npm puppeteer cucumberjs

成功完成方案后,cucumberjs无限期挂起。我怎样才能阻止它?

我在npm / nodejs上运行了cummingjs。

package.json:

{
  "name": "foo-test-automation",
  "version": "1.1.0",
  "description": "Integration Regression UI Test Automation for Foo application",
  "main": "fooAutoTest.js",
  "scripts": {
    "start": ". .env; node ./node_modules/.bin/cucumber-js --tags @RegressionTestSuite --format json:./results/log_`date +\\\"%Y\\\\%m\\\\%d_%H%M\\\"`.json",
},

完成后,cumber似乎正在后台运行

$ npm run new
............................

5 scenarios (5 passed)
28 steps (28 passed)
0m37.701s

我正在寻找挂起的进程:

Hucks-MacBook-Pro:~ huckcarignan$ ps aux | grep node
huckcarignan     25252   0.0  0.0  4287512    856 s004  S+   12:30PM   0:00.00 grep node
huckcarignan     18365   0.0  0.2  4652124  40804 s000  S+   11:33AM   0:02.64 node ./node_modules/.bin/cucumber-js --tags @New --format json:./results/log_"20190521_1133".json
huckcarignan     18362   0.0  0.0  4280924    868 s000  S+   11:33AM   0:00.01 sh -c . .env; node ./node_modules/.bin/cucumber-js --tags @New --format json:./results/log_`date +\"%Y\\%m\\%d_%H%M\"`.json

所以我什么也没跳出来。

我是否在我的hooks.js中缺少某些内容:

 const { BeforeAll, AfterAll } = require('cucumber');
 const puppeteer = require('puppeteer');
 const timestamp = require('time-stamp');
 require('dotenv').config();

 BeforeAll(async function() {
     this.browser = await puppeteer.launch({
         headless: (process.env.HEADLESS === 'true'),
         slowMo: parseInt(process.env.SLOWMO),
         defaultViewport: {
             width: parseInt(process.env.SCREEN_SIZE_WIDTH),
             height: parseInt(process.env.SCREEN_SIZE_HEIGHT)
         }
     });
     this.page = await this.browser.newPage();
 });

 AfterAll(async function() {
     // Teardown browser
     if (this.browser) {
         await this.browser.close();
     }
 });

任何帮助将不胜感激。

更新1 我尝试用以下方式替换AfterAll:     //异步承诺     AfterAll(function(){         返回Promise.resolve();     });

但它仍然挂起(但在打开浏览器的情况下)

2 个答案:

答案 0 :(得分:0)

通过阅读本页面-https://www.npmjs.com/package/selenium-webdriver参考,您可以创建一个单独的名为driver-factory.js的类,并使用所需的功能来构建webdriver。

从挂钩中调用此类,并在AfterAll批注中使用它。如果驱动程序已存在,请尝试将其退出。

答案 1 :(得分:0)

根据 (CLI reference),您应该能够在 npm 命令的末尾添加“--exit”。所以它看起来像这样:

./node_modules/.bin/cucumber-js --tags @RegressionTestSuite --format json:./results/log_`date +\\\"%Y\\\\%m\\\\%d_%H%M\\\"`.json --exit

这里有一些有用的提示,可以帮助您找出问题发生的原因以及解决方法。