with Miyn and SauceLabs?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
miyn: {
type: "app",
app: "miyn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://calendar.miyn.app/zapier.php`,
params: {
api_key: `${this.miyn.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})