VOOZH about

URL: https://apify.com/practicaltools/pageview-generator

โ‡ฑ Page View Generator / Stress Tester ยท Apify


๐Ÿ‘ Page View Generator / Stress Tester avatar

Page View Generator / Stress Tester

Pricing

$50.00 / 1,000 page views

Go to Apify Store

Page View Generator / Stress Tester

Simulates realistic page views to a URL using rotating Apify residential proxies for stress testing and traffic analysis.

Pricing

$50.00 / 1,000 page views

Rating

5.0

(1)

Developer

๐Ÿ‘ Practical Tools

Practical Tools

Maintained by Community

Actor stats

0

Bookmarked

8

Total users

0

Monthly active users

2 months ago

Last modified

Share

Browser-Based Load Testing with Real Residential IPs

Test how your website performs under real-world load. This Actor launches full Chromium browser sessions โ€” not raw HTTP requests โ€” routed through rotating residential proxies worldwide. Every session loads JavaScript, executes analytics scripts, fires network requests, and behaves exactly like a real visitor navigating your site.

Use it to expose bottlenecks before they hit production, validate your CDN and caching setup, or verify that your infrastructure holds up under traffic spikes from different regions.


What this Actor does

Each simulated session:

  • Opens a real headless Chromium browser (full JS execution, resource loading, analytics events)
  • Routes through a unique residential IP โ€” a fresh proxy session per browser visit, so every hit looks like a different user from a different location
  • Applies a randomised browser fingerprint (screen resolution, timezone, platform, language) via Crawlee's built-in fingerprint injection
  • Scrolls through the page and moves the mouse to simulate realistic dwell behaviour (configurable)
  • Waits a configurable dwell time on the page before closing the session
  • Records status code, full page load duration, and any errors
  • Streams all results live to a dataset and saves a summary with aggregate stats when complete

Intended use cases

This tool is designed for engineers testing infrastructure they own or are authorised to test:

  • Pre-launch stress testing โ€” find breaking points before real users do
  • CDN and edge cache validation โ€” confirm that cache-hit rates hold under concurrent load
  • Rate limiting and WAF verification โ€” check that your firewall rules behave correctly under bursts from diverse IPs
  • Regional performance benchmarking โ€” measure load times routed through proxies in specific countries
  • Rendering pipeline testing โ€” verify that server-side rendering, hydration, and JS bundle loading work correctly under concurrency
  • Autoscaling trigger testing โ€” confirm your hosting provider scales up when it should

Important: Only run this against websites and infrastructure you own or have explicit permission to test. Unauthorised load testing may violate Terms of Service and applicable law.


How to use

  1. Open the Actor on Apify Store and click Try for free
  2. Enter the Target URL of the page you want to test
  3. Set Page View Count, Concurrency, and Delay to define the load profile
  4. Optionally pin a Country Code to test from a specific region
  5. Click Start โ€” results stream in real time to the Output tab
  6. When the run finishes, export the dataset as JSON, CSV, or Excel

Input

FieldTypeDefaultDescription
urlstring(required)Target URL to load in each browser session
requestCountinteger50Total number of browser sessions to run
concurrencyinteger5Maximum parallel browser sessions
minDelayMsinteger0Minimum pre-request delay per session (ms)
maxDelayMsinteger0Maximum pre-request delay per session (ms) โ€” randomised between min and max
minTimeOnPageMsinteger2000Minimum time the browser spends on the page after load (ms)
maxTimeOnPageMsinteger8000Maximum time the browser spends on the page after load (ms)
simulateBehaviorbooleantrueScroll through the page and move the mouse during the session
waitUntilselectloadPage load event to await: domcontentloaded, load, or networkidle
proxyGroupsarray["RESIDENTIAL"]Apify proxy groups โ€” use RESIDENTIAL for diverse IPs
countryCodestring(any)ISO 3166-1 alpha-2 country code to restrict proxy location (e.g. US, DE)
headersobject{}Extra HTTP headers injected into every browser session

Example โ€” pre-launch stress test from US residential IPs:

{
"url":"https://yourdomain.com",
"requestCount":200,
"concurrency":10,
"minDelayMs":300,
"maxDelayMs":1200,
"minTimeOnPageMs":3000,
"maxTimeOnPageMs":10000,
"simulateBehavior":true,
"waitUntil":"networkidle",
"proxyGroups":["RESIDENTIAL"],
"countryCode":"US"
}

Output

Each browser session produces one record in the default dataset.

Per-session record:

{
"requestIndex":1,
"url":"https://yourdomain.com",
"statusCode":200,
"durationMs":2847,
"success":true,
"error":null,
"timestamp":"2024-05-10T12:34:56.789Z"
}

Run summary (saved to key-value store under key SUMMARY):

{
"url":"https://yourdomain.com",
"totalRequests":200,
"successCount":198,
"errorCount":2,
"successRate":"99.0%",
"avgDurationMs":2341,
"minDurationMs":987,
"maxDurationMs":8203,
"totalElapsedMs":94500,
"throughputReqPerSec":2.12,
"statusCodeCounts":{"200":198,"503":2},
"finishedAt":"2024-05-10T12:36:31.289Z"
}

durationMs measures the full browser session โ€” from navigation start to page fully loaded plus dwell time โ€” making it a realistic measure of user-perceived load time.


Tips

Ramp up gradually: Start with concurrency: 3 and requestCount: 20 to establish a baseline, then increase concurrency incrementally to identify the threshold where errors begin appearing.

Stick with domcontentloaded for reliability: The default domcontentloaded event fires once the HTML is parsed and JS starts executing โ€” which is when real users start perceiving the page. load and networkidle additionally wait for all images and background requests to finish, which through residential proxies can easily exceed 60 seconds on image-heavy sites and cause unnecessary retries. Only switch to networkidle if you specifically need to measure full resource load times.

Test specific regions: Set countryCode: "DE" to route all sessions through German residential IPs. Useful for validating region-specific CDN edge nodes or GDPR-related routing rules.

Simulate sustained low-level load: Set concurrency: 2, requestCount: 500, minDelayMs: 1000, maxDelayMs: 3000 for a prolonged gentle test that runs for several minutes without spiking your error rates.

Inject custom headers: Use headers to pass values like { "X-Test-Run": "load-test-2024" } so your server logs can distinguish test traffic from real traffic during the test window.


FAQ

Can I use this on any website? Only on websites and services you own or have explicit written authorisation to test. Load testing without permission can cause service disruption and may be illegal under computer misuse legislation in your jurisdiction.

Why use browser sessions instead of plain HTTP requests? Real browser sessions load the full page โ€” JavaScript bundles, fonts, images, third-party scripts, analytics events. This exercises your entire stack: origin server, CDN, edge workers, and any client-side rendering pipeline. Plain HTTP misses all of that.

Will server-side analytics record these sessions? Yes โ€” access logs, Cloudflare, and server-side analytics will record the requests. Client-side analytics tools (e.g. Google Analytics) will also fire since JavaScript executes in the browser. If you want to exclude test traffic from your analytics, use the headers input to inject a recognisable header and filter it out in your analytics platform.

Is there a free tier? Free Apify accounts can run 1 browser session per run to try the Actor. For any meaningful load test you'll need a paid Apify plan, which removes this cap.

Do I need a paid Apify plan for residential proxies? Yes. Residential proxies require a paid Apify subscription. If you want to run without proxies (all sessions from the Actor's container IP), set proxyGroups: [] โ€” useful for quick local network tests.

How much does a run cost? Cost depends on the number of sessions, page size, and proxy traffic. Browser sessions consume more proxy bandwidth than raw HTTP โ€” a typical modern webpage transfers 1โ€“3 MB. At 100 sessions ร— 2 MB average: ~200 MB of residential proxy traffic. Check current proxy pricing at apify.com/pricing.

You might also like

MCP Stress Tester

jakub.kopecky/mcp-stress-tester

A simple MCP Stress Tester client Actor for stress-testing your Model Context Protocol server. ๐Ÿ’ปโšก

๐Ÿ‘ User avatar

Jakub Kopeckรฝ

6

Traffic Generator pro

scrapingxpert/traffic-generator-pro

The Traffic Generator simulates realistic web traffic using Playwright. It generates views, simulates user behavior, and tests website performance, ideal for scalability testing, user behavior analysis, and traffic generation.

312

1.2

Load Stress Test & Traffic Generator

onidivo/load-stress-test

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

๐Ÿ‘ User avatar

Onidivo Technologies

302

4.0

African Economic Stress Monitor

malmon/african-economic-stress-monitor

Rules-based stress monitor for 11 African economies. FX, inflation, and commodity signals produce a transparent verdict: stable, watch, elevated, or stress. Supports Apify MCP connectors โ€” pipe results to Notion, Slack, or GitHub

(New) Best Website Traffic Generator

harshmaur/website-traffic-generator

Draw targeted traffic to your websites, mimic real user behaviour and view their stats on Google analytics. Auto discover links on the page and crawl the entire websites in few minutes while giving you complete control. Use the tool to generate page views, stress test the website.

2.9K

5.0

Web Traffic Generator

louisdeconinck/web-traffic-generator

Web Traffic Generator is an Apify actor that simulates realistic user behavior by visiting multiple URLs and navigating through linked pages to generate authentic web traffic and collect basic data on page visits.

๐Ÿ‘ User avatar

Louis Deconinck

350

2.2

Stress & Load Testing Tool

onescales/stress-test-tool

Test your website's performance under load with this comprehensive stress testing tool and see the results in a table, json or export to excel or google sheets via csv. Simulate multiple concurrent users, measure response times, and identify bottlenecks before they impact your real customers.

69

5.0

Latin America Economic Stress Monitor

malmon/latam-economic-stress-monitor

Rules-based stress monitor for 7 Latin American economies. FX momentum, inflation, and commodity terms-of-trade signals produce a transparent verdict: stable, watch, elevated, or stress. Covers Argentina, Brazil, Mexico, Colombia, Chile, Peru, Uruguay.

Traffic Generator (Youtube, Web, Etsy, Behance and many more!)

epctex/traffic-generator

Maximize your website's performance and visibility with our Traffic Generator. Drive targeted traffic, simulate page views, and stress-test against potential threats. With the power to generate millions of visits, it's the ultimate solution for boosting your online presence.

Related articles

Rotating proxies: why you need them for web scraping
Read more