Sauce Labs helps organizations deliver a trusted digital experience with the most comprehensive and trusted continuous testing cloud in the world.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
Sauce Labs API lets you automate your web and mobile app testing. This means you can create, manage, and run tests programmatically on different browsers and devices, gather results, and tap into Sauce Labs' extensive browser/device coverage without manual intervention. With Pipedream, you can connect Sauce Labs to a wide array of other services to streamline your testing pipeline, react to testing events in real-time, and integrate test outcomes into your CI/CD workflow, issue tracking, or notification systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
saucelabs: {
type: "app",
app: "saucelabs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.saucelabs.$auth.api_base_url}.saucelabs.com/rest/v1/info/status`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.saucelabs.$auth.username}`,
password: `${this.saucelabs.$auth.access_key}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})