Skip to content

automatekitbox/testrail-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

testrail-integration is a popular package which supports both testrail api's and Cucumber framework

#TestRailClient #CucumberRailClient

Integration of Cucumber and TestRail

  • Caseids can have either @c or @C Ex: @c123 or @C123
  • BugIds pattern follow as Bug-JIRAID Ex: Bug-DSS-678

# Feature file

Single case tagging:-
 @C123
  Scenario Outline: 

@c123
Scenario:

Mulltiple Case taggings

 @C123 @C789 @c432
  Scenario Outline: 

- CaseID mapping with Bugs

 @C123 @Bug-DSS-678
  Scenario Outline: 
  
 - Multiple bugs mapping
  @C123 @Bug-DSS-678,DSS-987
  Scenario Outline: 

Create hook file, or you can try hooks of protractor,webdriverio etc

  • If you are using cucumber framework, you can create separe native cucmber hooks as well if needed
//typescript
import {CucumberRailClient} from "testrail-integration";
//javascript

const {CucumberRailClient} = require ("testrail-integration");

//username, password, url, runid and version can be passed from .env or config or property file

//Below code you can keep it in Before All hook
const options = {
  username: "[email protected]",
  password: "pwd123,
  url: "https://in12.testrail.io"
};
const testrail = new CucumberRailClient(options);

//Below code , just added flag with or without testrail
After({timeout: 100 * 3000}, async (scenario) => {

  console.log(`Scenario  ${scenario.result.status.toString()}`);
  if (istestrailrun.includes("true")) {
    const runid = 1;
    const version = "Build 1.3.4"
    try {
      await testrail.updateTestRailResults(scenario, runid, version);
    } catch (err) {
      console.log("Error " + err);
    }

  }
});

License

Please see LICENSE.md.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published