0

我在一个 Angular (v.4) 项目中工作并使用 Protractor 我遇到了这个问题

从终端:

I/launcher - 运行 1 个 WebDriver 实例

I/hosted - 在http://localhost:4444/wd/hub使用 selenium 服务器 已 开始 未找到规范 0.003 秒内完成

I/launcher - 0 个 WebDriver 实例仍在运行 [17:06:38] I/launcher - chrome #01 通过

它运行快速关闭的浏览器,并且不运行(查找)任何规范。

量角器.conf.js:

require('ts-node/register');
var helpers = require('./helpers');

exports.config = {
  baseUrl: 'http://localhost:3000/',

  // use `npm run e2e`
  specs: [
    helpers.root('test/e2e/**/**.e2e.ts'),
    helpers.root('test/e2e/**/*.e2e.ts')
  ],
  exclude: [],

  framework: 'jasmine2',

  allScriptsTimeout: 110000,

  jasmineNodeOpts: {
    showTiming: true,
    showColors: true,
    isVerbose: false,
    includeStackTrace: false,
    defaultTimeoutInterval: 400000
  },

  directConnect: true,

  capabilities: {
    browserName: 'chrome',
    chromeOptions: {
      args: ["--headless", "--disable-gpu", "--window-size=800x600"]
    }
  },

  onPrepare: function () {
    browser.ignoreSynchronization = true;
  },

  /**
   * Angular 2 configuration
   *
   * useAllAngular2AppRoots: tells Protractor to wait for any angular2 apps on the page instead of just the one matching
   * `rootEl`
   */
  useAllAngular2AppRoots: true
};

文件夹结构

-/App
|--/config
   |--protractor.conf.js
   |--helpers.js 
   |--(all webpack files)
   |--(other stuff)
|--/node_modules
|--/src
|--/test
   |--/e2e
      |-mytest.e2e.ts
   |--/features
   |--/mockBackend
   |--/pages
      |-mypage.page.ts
   |--config.js

包.json

"cucumber": "^2",
"cucumber-html-reporter": "^3.0.4",
"cucumber-snippets-tsflow": "^1.0.2",
"cucumber-tsflow": "^2.2.0",
"protractor": "^5.1.2",
"protractor-cucumber-framework": "^3",
"protractor-snapshot": "^1.2.0",
4

2 回答 2

1

我刚刚意识到您可能npm run e2e以启动命令的形式执行,表明您正在使用angular-cli或类似的工具来运行量角器。因此,运行命令而不是路径定义中可能存在问题。据我所见,方式上有一些变化/问题,量角器开始了,即here

我建议尝试这些:

  1. 将您的 specs-part 放在capabilities: { ... }-part 中,因为这是protractor 提供的。也许其中一个 angular-cli-configuration 期望在那里而不是作为一个单独的部分
  2. 使用像Cliptor.js这样的 config-helper-tool创建一个新的配置文件,然后比较文件的差异。
  3. 通过执行命令protractor protractor.conf.js从官方量角器站点)直接启动量角器,而不是npm run e2e验证/伪造问题是否在内部angular-cli或内部protractor
于 2017-10-07T16:49:48.620 回答
0

任何路径都从protractor.conf.js存储位置开始(因此您从配置文件夹开始)。鉴于提供的文件夹结构,我将从正常路径开始:

// use `npm run e2e`
specs: [
    //one level up, then below test/e2e/ all files ending with '.e2e.ts'
   // '../test/e2e/**/**.e2e.ts', //if *.ts is a file, no need for double ** 
    '../test/e2e/**/*.e2e.ts'  
],
exclude: [],

如果**.e2e.ts代表一个文件夹而不是一个文件,您的路径应该结束/**e2e.ts/*.js(或者您为测试文件本身选择的任何文件结尾)。

还有你的helpers.js-file 你应该得到var helpers = require('./helpers.js');

而且我看不到,背后的this.root东西我无法提供helpers.root()

此外,您是否想要使用 TestSuites 或者您可能想要构建一个辅助函数,您可以在其中从基本目录而不是 conf.js 的相对路径开始。查看这些链接:

测试套件与规格

baseDir 而不是相对路径

希望我能帮上忙。

于 2017-10-03T06:51:18.993 回答