Load Stress Test & Traffic Generator avatar
Load Stress Test & Traffic Generator
Try for free

1 day trial then $15.00/month - No credit card required now

View all Actors
Load Stress Test & Traffic Generator

Load Stress Test & Traffic Generator

onidivo/load-stress-test
Try for free

1 day trial then $15.00/month - No credit card required now

Perform load and stress tests against your website. Drive traffic and test your website tools and integrations.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "urls": [
11        {
12            "url": "https://bmwrepairguide.com/"
13        }
14    ],
15    "maxUrlDuplications": 0,
16    "maxCrawledPagesPerDomain": 0,
17    "maxHandledPagesPerRun": 20,
18    "proxyConfiguration": {
19        "useApifyProxy": true
20    },
21    "maxHandledPagesPerTime": 50,
22    "pageNavigationTimeoutMs": 60000
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("onidivo/load-stress-test").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
37
38// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 15 monthly users
  • 100.0% runs succeeded
  • 0.0 days response time
  • Created in Feb 2024
  • Modified about 2 months ago