无法使用ProtractorJS更新Testrail中的结果

时间:2019-02-02 05:42:39

标签: jasmine protractor testrail

我无法在Testrail中更新量角器测试的结果。 我看到各种NPM模块,非常混乱 - 各种作家提到的不同NPM模块

环境: 1. ProtractorJS(基于NPM) 2. Testrail

  1. 安装的 - NPM安装量角器-testrail-诺
  2. 创建一个javascript页面对象 - loginPage.js

和所述loginPage.js的内部,我已经写非常基本的测试来验证。

loginPage.js - is below:

var TestRail = require("protractor-testrail-promise");

var loginPage = function () {
var testrail = new TestRail("https://myproject.testrail.net", "useremail@email.com", "pw");       
var testCaseId="A644776";
var testResultId="1"; //Equal to Pass
testrail.addResult(testCaseId, testResultId).then(function(body) {
  console.log(body);
  })
});

已执行:结果应在testrail系统中更新。

实际:在Testrail中没有发生更新,在我的VSCode控制台中也没有错误。

1 个答案:

答案 0 :(得分:0)

我删除了testcaseid的前缀“ A”。 不得在代码中添加前缀。

var TestRail = require("testrail-promise");

var tr = new TestRail('https://myproj.testrail.net', 'dinesh@abc.com', 'werer');             
var obj = {
   "run_id": 001 ,
   "project_id":2,
   "section_name":"My Section", //Immediate section name is fine
   "case_id":  60644 , //Original case id - (View Case)
   "custom_buildno":"B76",
   "status_id":"1", //pass
};
tr.addResultForCase(obj).then(function (err) { console.log('Error ==>', err);});