使用Selenium + istanbul的javascript代码覆盖率

问题描述 投票:0回答:1

在运行Selenium测试用例时,有人可以帮我了解如何使用Istanbul获取JavaScript代码吗?

我已经通过this链接但无法得到它。我如何在我的情况下使用它?我的测试是在调用远程服务器的本地浏览器中运行的。 Selenium测试用例用Java编写。

javascript selenium code-coverage instruments istanbul
1个回答
0
投票

https://github.com/alex028502/istanbulseleniumexample

我也很难理解,所以我用webpack做了上面的例子。

module.exports = {
  devtool: 'source-map',
  mode: 'none',
  module: {
    rules: [
      // { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
      {
        resolve: {
          extensions: ['.js'],
        },
        use: {
          loader: 'istanbul-instrumenter-loader',
          options: {esModules: true},
        },
        enforce: 'post',
        exclude: /node_modules/,
      },
      {
        test: /\.coffee$/,
        use: [
          {loader: 'coffee-loader'},
        ],
      },
    ],
  },
  entry: './src/index.js',
  output: {
    path: __dirname + '/public/',
    filename: 'index.js',
  },
};

然后,如果您在浏览器中运行已检测的代码,则可以像这样下载它

coverage_info = _driver.execute_script('return JSON.stringify(window.__coverage__);')
# each report needs a unique name
# but we don't care for this example which report corresponds
# to which test
timestamp = datetime.datetime.timestamp(datetime.datetime.now())
file = open("nyc_output/coverage%s.json" % timestamp, 'w')

然后生成这样的报告

node_modules/.bin/nyc report -t nyc_output

如果您不使用webpack,则只需使用命令行检测代码,如您粘贴的示例所示,并使用检测代码创建一个新文件夹。

# from https://medium.com/@the1mills/front-end-javascript-test-coverage-with-istanbul-selenium-4b2be44e3e98
mkdir public-coverage
cp -a public/. public-coverage/   # copy all files over
istanbul instrument public \ 
    --output public-coverage \
    --embed-source true

我在没有提到的链接中能够做的部分是伊斯坦布尔中间件

© www.soinside.com 2019 - 2024. All rights reserved.