TestMonitor, a modern software tool for functional, user- and acceptance tests of software implementations with one goal only: Testing with a smile!
Go to siteTestMonitor API taps into the robust testing and project management platform, allowing you to automate issue tracking and test management processes. With this API, you can create, update, and retrieve issues, manage test cases and results, and integrate testing workflows with other systems. Leveraging Pipedream's serverless execution model, you can craft workflows that trigger on specific events within TestMonitor, reflect changes in real-time across other applications, or systematically analyze and report test outcomes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testmonitor: {
type: "app",
app: "testmonitor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.testmonitor.$auth.domain}.testmonitor.com/api/v1/users`,
headers: {
Authorization: `Bearer ${this.testmonitor.$auth.api_token}`,
},
})
},
})
Automated Bug Tracking: When a test case in TestMonitor fails, trigger a workflow that automatically creates a bug report in an issue tracking system like Jira or GitHub Issues. This keeps developers in the loop and ensures that no test failure goes unnoticed.
Test Result Notifications: Set up a workflow where team members get immediate notifications through Slack or email whenever a new test result is posted in TestMonitor. This keeps the whole team up to speed and can fast-track the fixing process.
Synchronized Requirement Tracking: Whenever a new requirement is added to a project management tool like Trello or Asana, trigger a Pipedream workflow that creates a corresponding test case in TestMonitor. This ensures that testing requirements stay in sync with project development milestones.
TestMonitor uses API keys for authentication. When you connect your TestMonitor account, Pipedream securely stores the keys so you can easily authenticate to TestMonitor APIs in both code and no-code steps.
You can get your API Token from your TestMonitor account by going to My Account, then API.
If your TestMonitor URL is https://123.testmonitor.com/
, your domain is 123
.