
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
playwright-testrail-reporter
Advanced tools
playwright-testrail-reporter is a custom reporter for Playwright Test to seamlessly integrate with TestRail. The reporter automatically creates TestRail Runs and adds test results by matching test case IDs.
npm install @playwright-testrail-reporter
To use TestRail Reporter, you will need to set up the following environment variables:
TESTRAIL_HOST: TestRail instance domain name e.g ```https://testrail.instance.io```
TESTRAIL_USERNAME: TestRail email
TESTRAIL_PASSWORD: TestRail API key (Generate this or use an existing one from the 'My Settings' page on your TestRail instance)
TESTRAIL_PROJECT_ID: TestRail project ID where test runs and results will be added
TESTRAIL_SUITE_ID: The TestRail suite ID associated with the test cases
TESTRAIL_RUN_NAME: The name of the TestRail test run. (the execution time will be appended to this name on when created on TestRail)
Additionally, you may provide the TESTRAIL_RUN_ID environment variable to use an existing TestRail test run instead of creating a new one.
playwright.config.ts
Example:
const config: PlaywrightTestConfig = {
reporter: [
["list"],
["playwright-testrail-reporter"]
]
// ...
};
export default config;
Example:
test("C12345: Login with valid credentials should succeed", async ({ page }) => {
// ...
});
or if you need to pass multiple case ids:
test("C12345 C12346 C12347 Login with valid credentials should succeed", async ({ page }) => {
// ...
});
[playwright-testrail-reporter]: No Existing 'TESTRAIL_RUN_ID' provided by user...
[playwright-testrail-reporter]: Automatically creating a run... (If you did not provide a run ID)
[playwright-testrail-reporter]: New TestRail run has been created: https://<testrail-host>/index.php?/runs/view/<run-id>
[playwright-testrail-reporter]: Matched Test Case ID: 12345
[playwright-testrail-reporter]: Updating test status for the following TestRail Run ID: <run-id>
[playwright-testrail-reporter]: Updated test results for Test Run: https://<testrail-host>/index.php?/runs/view/<run-id>
Note:
The default behaviour is to include all test cases in the automatically generate test run. If you prefer to select specific tests cases, then manually create the run on TestRail, select the relevant test cases and pass the run id to the TESTRAIL_RUN_ID
environment variable
This project is licensed under the MIT License
FAQs
Report Playwright test results to TestRail
The npm package playwright-testrail-reporter receives a total of 4,984 weekly downloads. As such, playwright-testrail-reporter popularity was classified as popular.
We found that playwright-testrail-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.