What do you want to automate

with TestLocally and Smartproxy?

Prompt, edit and deploy AI agents that connect to TestLocally, Smartproxy and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Test Run from the TestLocally API

Emit new event when a new test is run or completed in TestLocally. See the documentation

 
Try it
Get Test with the TestLocally API

Get details of a specific test in TestLocally. See the documentation

 
Try it
List Tests with the TestLocally API

Returns a list of tests in TestLocally. See the documentation

 
Try it
Run Test with the TestLocally API

Create and run a new test in TestLocally. See the documentation

 
Try it
Integrate the TestLocally API with the Smartproxy API
Setup the TestLocally API trigger to run a workflow which integrates with the Smartproxy API. Pipedream's integration platform allows you to integrate TestLocally and Smartproxy remarkably fast. Free for developers.

Connect TestLocally

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    testlocally: {
      type: "app",
      app: "testlocally",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://testlocal.ly/api/v0/me`,
      headers: {
        Authorization: `Bearer ${this.testlocally.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of Smartproxy

Smartproxy is a tool that grants you access to a vast pool of residential IPs, allowing you to scrape data, automate tasks, and bypass geolocation restrictions without getting blocked. It's valuable for tasks that require mimicking real user behavior and accessing web data with minimal footprint. On Pipedream, you can leverage the Smartproxy API to create workflows that automate these tasks, integrate with other services, and handle the data as needed, all in a serverless environment.

Connect Smartproxy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    smartproxy: {
      type: "app",
      app: "smartproxy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.smartproxy.$auth.api_type}.smartproxy.com/v2/sub-users`,
      params: {
        "api-key": `${this.smartproxy.$auth.api_key}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo