tree: 6dec005c07085a92c049a38703df54382d32e46e [path history] [tgz]
  1. features/
  2. plugins/
  3. runtime-site/
  4. site/
  5. pom.xml
  6. README.md
modules/testrail/README.md

RCPTT Integration with TestRail

TestRail configuration parameters:

  • host --- TestRail Host. Should be valid URL and end with slash “/”.
  • username --- Username.
  • password --- Password or API Key.
  • projectId --- Project ID. Should start with “P” and end with positive number.

Examples For RCPTT Test Runner:

    -testEngine 'testrail:host=https://example.testrail.net/;username=username@example.com;password=1234567890;projectId=P1'

For RCPTT Maven Plugin:

    <configuration>
      <testEngines>
        <testEngine>
          <id>testrail</id>
          <parameters>
            <host>https://example.testrail.net/</host>
            <username>username@example.com</username>
            <password>1234567890</password>
            <projectId>P1</projectId>
          </parameters>
        </testEngine>
      </testEngines>
    </configuration>