diff --git a/.changeset/runner-api-error-body.md b/.changeset/runner-api-error-body.md new file mode 100644 index 00000000..6f398ca4 --- /dev/null +++ b/.changeset/runner-api-error-body.md @@ -0,0 +1,5 @@ +--- +"@benchsdk/runner": patch +--- + +Print the API response body when a run fails with a `BenchmarkApiError`. The error message carries only the status line, so a failed run previously logged a bare `400 Bad Request` with no indication of which field the platform rejected. diff --git a/benchmarks/browser/browser-concurrent.bench.ts b/benchmarks/browser/browser-concurrent.bench.ts new file mode 100644 index 00000000..f5557c95 --- /dev/null +++ b/benchmarks/browser/browser-concurrent.bench.ts @@ -0,0 +1,891 @@ +/** + * Browser concurrent sessions benchmark: each round creates N browser sessions + * in parallel, waits for all to be alive + connected (barrier), runs a fixed + * 10-action loop on every session simultaneously, then releases all. + * + * One phase per concurrency level, one task each: the c1 task runs every round + * at 1 session, the c50 task every round at 50, so a single platform run carries + * the whole sweep and the task index becomes the concurrency axis — the + * platform's per-iteration view is then the degradation curve. + * + * `--levels` picks which levels run; the rounds at each level are fixed by + * ROUNDS_PER_LEVEL. There is deliberately no way to ask for "more iterations": + * repeating a level means more rounds, which is a property of the level, and + * the runner rejects `--iterations` outright because this benchmark declares + * phases. + * + * This shape exists because a participant carries one task count for the whole + * run, so the levels cannot be separate participants without also splitting + * the providers apart. Keeping one participant per provider and spending its + * five tasks on the five levels keeps provider rankings intact and still + * reports each level separately, via a task index and per-level step names. + * + * bench run benchmarks/browser/browser-concurrent.bench.ts + * bench run benchmarks/browser/browser-concurrent.bench.ts --levels 1,5 + * bench run benchmarks/browser/browser-concurrent.bench.ts --provider browserbase --levels 50 + * + * Results are still organized by concurrency level, mirroring the storage + * benchmark's per-file-size directories: + * results/browser-concurrent/c1/, c5/, c10/, c25/, c50/ + * + * Levels run one at a time within a task, and a cooldown separates them: + * overlapping them would put two levels' sessions on the same provider account + * at once, which destroys the comparison the benchmark is making. + */ +import '../src/env.js'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { chromium, type Browser, type Page } from 'playwright-core'; +import { defineBenchmarkConfig, defineTask, TaskError, type TaskContext } from '@benchsdk/runner'; +import type { JsonValue } from '@benchsdk/client'; +import { withTimeout } from '../src/util/timeout.js'; +import { throughputProviders } from './throughput-providers.js'; +import { ConcurrencyTracker, sessionHitActionTimeout, shouldStartLoop } from './concurrent-benchmark.js'; +import { writeConcurrentSweepResults } from './concurrent-legacy-results.js'; +import { + ACTION_TIMEOUT_MS, + ACTIONS_PER_LOOP, + CONCURRENCY_LEVELS, + LEVEL_ACTION_BUDGET_MS, + LOOPS_PER_LEVEL, + ROUNDS_PER_LEVEL, + actionsPerSession, + type ConcurrencyLevel, + levelFromPhaseName, + parseLevels, + phaseNameForLevel, + type ActionResult, + type RoundResult, + type SessionResult, + type ConcurrentProviderConfig, +} from './concurrent-types.js'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const concurrentTimeoutMs = + throughputProviders.reduce((max, p) => Math.max(max, p.timeout ?? 120_000), 0) || 120_000; + +// ── Custom CLI flag: --levels (the runner ignores flags it does not know) ───── +// Which levels to sweep, not how many times anything repeats: the rounds at each +// level are fixed by ROUNDS_PER_LEVEL. `--iterations` cannot express this, and +// the runner rejects it outright for benchmarks that declare phases. +const levelsArg = (() => { + const argv = process.argv.slice(2); + const idx = argv.indexOf('--levels'); + return idx !== -1 && idx + 1 < argv.length ? argv[idx + 1] : undefined; +})(); +const { levels: SELECTED_LEVELS, error: levelsError } = parseLevels(levelsArg); +if (levelsError) { + console.error(levelsError); + process.exit(1); +} + +/** + * Rounds that fit in one task record: the client caps a record at 100 steps and + * every round reports create/connect/actions/release. + */ +const MAX_ROUNDS_PER_TASK = 25; + +/** + * Overrides the per-level round count, for the push smoke test. Set to 1 there + * so a workflow change can be exercised in a couple of minutes instead of + * running the full 31 rounds. + */ +const ROUNDS_OVERRIDE = (() => { + const raw = process.env.CONCURRENT_ROUNDS_PER_LEVEL; + if (!raw) return undefined; + const parsed = Number(raw); + if (!Number.isInteger(parsed) || parsed < 1) return undefined; + // Each round reports 4 steps and the client rejects a task record carrying + // more than 100, which would throw away the whole level rather than trim it. + if (parsed > MAX_ROUNDS_PER_TASK) { + console.warn( + `CONCURRENT_ROUNDS_PER_LEVEL=${parsed} exceeds the ${MAX_ROUNDS_PER_TASK} rounds that fit ` + + `in one task record (4 steps each); using ${MAX_ROUNDS_PER_TASK}.`, + ); + return MAX_ROUNDS_PER_TASK; + } + return parsed; +})(); + +/** + * Pause between levels, so sessions a provider is still tearing down do not + * count against the next level's quota. Providers cap concurrent sessions + * (kernel at 10, steel at 5 on its hobby plan), and a release is acknowledged + * before the slot is actually free, so without this the next level starts + * against a partly occupied account and measures our own cleanup lag. + */ +const LEVEL_COOLDOWN_MS = (() => { + const raw = process.env.CONCURRENT_LEVEL_COOLDOWN_MS; + if (!raw) return 60_000; + const parsed = Number(raw); + return Number.isFinite(parsed) && parsed >= 0 ? parsed : 60_000; +})(); + +/** + * Every round, in full detail, keyed by provider then level. + * + * The local result files are written from this rather than from the records + * sent to the platform: a c50 task covers 1,500 actions, which does not belong + * in a task payload, so the platform gets per-round aggregates while the + * committed artifact keeps everything. + */ +const collectedRounds = new Map>(); + +function collectRound(provider: string, level: number, round: RoundResult): void { + const byLevel = collectedRounds.get(provider) ?? new Map(); + collectedRounds.set(provider, byLevel); + const rounds = byLevel.get(level) ?? []; + rounds.push(round); + byLevel.set(level, rounds); +} + +export const config = defineBenchmarkConfig({ + benchmarkSlug: 'browser-concurrency', + benchmarkName: 'Browser Concurrency', + // One phase per level, one task each: the phase names the level a record + // belongs to, so nothing depends on task position, and declaring phases makes + // the runner refuse `--iterations` instead of silently reinterpreting it as a + // number of levels. + phases: SELECTED_LEVELS.map((level) => ({ name: phaseNameForLevel(level), iterations: 1 })), + concurrency: 1, + participants: throughputProviders, + onComplete: () => + writeConcurrentSweepResults(collectedRounds, { + resultsRoot: path.resolve(__dirname, '../../results/browser-concurrent'), + timeoutMs: concurrentTimeoutMs, + }), +}); + +// ── Wikipedia action loop (same as throughput benchmark, 1 loop = 10 actions) ─ +const RANDOM_URL = 'https://en.wikipedia.org/wiki/Special:Random'; +const FIRST_HEADING = '#firstHeading'; +const ARTICLE_LINK_SELECTOR = '#mw-content-text a[href*="/wiki/"]'; + +const NAV_URLS: string[] = parseNavUrls(); + +function parseNavUrls(): string[] { + const raw = process.env.THROUGHPUT_URLS?.trim(); + if (!raw) return []; + if (raw.startsWith('[')) { + try { + const parsed = JSON.parse(raw); + if (Array.isArray(parsed)) return parsed.filter((u): u is string => typeof u === 'string' && u.length > 0); + } catch { + // fall through + } + } + return raw.split(/\s+/).filter(u => u.length > 0); +} + +/** + * Pick the article for one session. + * + * Indexing by session rather than by round keeps the page mix comparable + * across concurrency levels. Sharing a single URL per round would let a c50 + * round hit one CDN-warmed article with 50 sessions while a c1 round pays + * cold-fetch cost on a different article every time, so page weight and cache + * state would vary with the dimension under test. + */ +function navUrlForSession(concurrencyLevel: number, roundIndex: number, sessionIndex: number): string { + if (NAV_URLS.length === 0) return RANDOM_URL; + return NAV_URLS[(roundIndex * concurrencyLevel + sessionIndex) % NAV_URLS.length]; +} + +function isArticleLink(href: string | null): boolean { + if (!href) return false; + const match = href.match(/\/wiki\/([^#]*)/); + if (!match) return false; + return !match[1].includes(':'); +} + +async function timeAction( + fn: () => Promise, +): Promise<{ durationMs: number; success: boolean; error?: string; value?: T }> { + const start = performance.now(); + try { + const value = await withTimeout(fn(), ACTION_TIMEOUT_MS, 'Action timed out'); + return { durationMs: performance.now() - start, success: true, value }; + } catch (err) { + return { durationMs: performance.now() - start, success: false, error: errorMessage(err) }; + } +} + +/** + * Run the 10-action loop on a single page. Identical to the throughput + * benchmark's loop but with LOOPS_PER_SESSION=1 (one loop = 10 actions). + */ +/** A session the provider actually handed back, with its own create latency. */ +interface CreatedSession { + sessionId: string; + connectUrl: string; + createMs: number; +} + +/** + * Not every provider SDK rejects with an Error: notte throws a plain object, + * which `String()` flattens to "[object Object]" and discards the reason a + * session was refused — the one thing a capacity failure needs to report. + */ +function errorMessage(err: unknown): string { + if (err instanceof Error) return err.message; + if (typeof err === 'string') return err; + if (err !== null && typeof err === 'object') { + const record = err as Record; + for (const key of ['message', 'error', 'detail']) { + const value = record[key]; + if (typeof value === 'string' && value.length > 0) return value; + } + try { + const json = JSON.stringify(err); + if (json && json !== '{}') return json; + } catch { + // Circular or non-serializable; fall through to String(). + } + } + return String(err); +} + +/** + * Distinct failure reasons with their counts. A capacity collapse is often + * mixed — kernel refused sessions for both a concurrency cap and a rate limit + * in the same round — so reporting only the first reason mis-attributes it. + */ +function reasonCounts(errors: string[]): Record { + const counts: Record = {}; + for (const error of errors) { + const key = error.slice(0, 200); + counts[key] = (counts[key] ?? 0) + 1; + } + return counts; +} + +/** + * Sessions live on the provider across the whole process, so this is module + * scoped: a level that overlapped the previous one shows up as a peak above its + * own session count, which is what a per-round counter would miss. + */ +const liveSessionTracker = new ConcurrencyTracker(); + +interface ActionLoopOptions { + loops: number; + /** performance.now() value after which no further loop starts. */ + deadline: number; + /** Called around the session's active window so the round can measure concurrency. */ + track: ConcurrencyTracker; +} + +async function runActionLoop( + page: Page, + results: ActionResult[], + navigateUrl: string, + options: ActionLoopOptions, +): Promise { + const { loops, deadline, track } = options; + const release = track.enter(); + try { + for (let loop = 0; loop < loops; loop++) { + // Checked between loops so every session stops on a loop boundary and the + // level holds its concurrency for as long as it runs. + if (!shouldStartLoop(loop, performance.now(), deadline)) break; + const baseIdx = loop * ACTIONS_PER_LOOP; + + // 1. Navigate + { + const r = await timeAction(() => + page.goto(navigateUrl, { waitUntil: 'load' }) as Promise, + ); + results.push({ index: baseIdx + 1, type: 'navigate', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 2. Wait for #firstHeading + { + const r = await timeAction(() => page.waitForSelector(FIRST_HEADING)); + results.push({ index: baseIdx + 2, type: 'waitForSelector', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 3. Screenshot + { + const r = await timeAction(() => page.screenshot()); + results.push({ index: baseIdx + 3, type: 'screenshot', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 4. Read text content of #firstHeading + { + const r = await timeAction(() => page.textContent(FIRST_HEADING)); + results.push({ index: baseIdx + 4, type: 'textContent', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 5. Click first article link + let clickSucceeded = false; + { + const r = await timeAction(async () => { + await page.waitForSelector(ARTICLE_LINK_SELECTOR, { timeout: 10_000 }); + const links = await page.$$(ARTICLE_LINK_SELECTOR); + for (const link of links) { + const href = await link.getAttribute('href'); + if (isArticleLink(href)) { + await link.click(); + return; + } + } + throw new Error('No article body link found on page'); + }); + clickSucceeded = r.success; + results.push({ index: baseIdx + 5, type: 'click', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + if (!clickSucceeded) { + for (const idx of [6, 7, 8, 9, 10]) { + results.push({ + index: baseIdx + idx, + type: idx <= 8 ? (idx === 6 || idx === 10 ? 'waitForSelector' : idx === 7 ? 'screenshot' : 'textContent') : 'goBack', + durationMs: 0, + success: false, + error: 'skipped: click failed', + }); + } + continue; + } + + // 6. Wait for #firstHeading on the new page + { + const r = await timeAction(() => page.waitForSelector(FIRST_HEADING)); + results.push({ index: baseIdx + 6, type: 'waitForSelector', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 7. Screenshot the new page + { + const r = await timeAction(() => page.screenshot()); + results.push({ index: baseIdx + 7, type: 'screenshot', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 8. Read text content of #firstHeading on the new page + { + const r = await timeAction(() => page.textContent(FIRST_HEADING)); + results.push({ index: baseIdx + 8, type: 'textContent', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 9. Go back (waitUntil: 'commit' for bfcache compatibility) + { + const r = await timeAction(() => page.goBack({ waitUntil: 'commit' }) as Promise); + results.push({ index: baseIdx + 9, type: 'goBack', durationMs: r.durationMs, success: r.success, error: r.error }); + } + + // 10. Wait for #firstHeading on the previous page + { + const r = await timeAction(() => page.waitForSelector(FIRST_HEADING)); + results.push({ index: baseIdx + 10, type: 'waitForSelector', durationMs: r.durationMs, success: r.success, error: r.error }); + } + } + } finally { + release(); + } +} + +// ── Provider cache (thread-safe lazy init) ─────────────────────────────────── +const providerCache = new Map(); +const providerInitPromises = new Map>(); + +async function getProvider(participant: ConcurrentProviderConfig): Promise { + const cached = providerCache.get(participant.name); + if (cached) return cached; + + let initPromise = providerInitPromises.get(participant.name); + if (!initPromise) { + initPromise = Promise.resolve(participant.createBrowserProvider()); + providerInitPromises.set(participant.name, initPromise); + } + const provider = await initPromise; + providerCache.set(participant.name, provider); + return provider; +} + +// ── One barrier round ──────────────────────────────────────────────────────── +type RoundContext = Pick, 'participant' | 'step' | 'log'> & { + concurrencyLevel: number; + roundIndex: number; +}; + +/** + * Runs one barrier round and always returns its result, including when the + * provider refuses every session. `harnessFailure` is reserved for our own + * bugs: a provider refusing load is a measurement, not an error. + */ +async function runRound(ctx: RoundContext): Promise<{ round: RoundResult; harnessFailure: boolean }> { + const { participant, step, log, concurrencyLevel, roundIndex } = ctx; + const timeout = participant.timeout ?? 120_000; + const sessionCreateOptions = participant.sessionCreateOptions ?? {}; + + const provider = await getProvider(participant); + + const totalStart = performance.now(); + let createMs = 0; + let connectMs = 0; + let taskMs = 0; + let releaseMs = 0; + let sessionsAlive = 0; + let aggregateActionsPerSecond = 0; + let createTimedOut = false; + const sessionResults: SessionResult[] = []; + let roundError: string | undefined; + let harnessFailure = false; + + // Declared outside try so the finally block can close them. + let browsers: Browser[] = []; + let aliveSessions: CreatedSession[] = []; + + // Every session id the provider hands back, whether or not the round goes on + // to use it. The finally block destroys all of them: releasing only the + // sessions that reached the action phase leaks the rest, and leaked sessions + // hold provider quota until their idle timeout, which corrupts later rounds. + const createdSessionIds = new Set(); + let cleanupComplete = false; + + const liveWatch = liveSessionTracker.watch(); + const actionTracker = new ConcurrencyTracker(); + const actionWatch = actionTracker.watch(); + const loops = LOOPS_PER_LEVEL[concurrencyLevel as ConcurrencyLevel]; + + // One release per session id, so double destroys cannot double count. + const liveReleases = new Map void>(); + const destroySession = (sessionId: string) => + withTimeout( + Promise.resolve(provider.session.destroy(sessionId)), + 15_000, + 'Session destroy timed out', + ) + .catch(() => {}) + .finally(() => liveReleases.get(sessionId)?.()); + + /** + * Start one session, recording its id as soon as the provider reports it. + * A create that resolves after its timeout still produces a live session, so + * it is destroyed on arrival once cleanup has already run. + */ + const createTrackedSession = (): Promise => { + const started = performance.now(); + const underlying = Promise.resolve( + provider.session.create(sessionCreateOptions), + ) as Promise<{ sessionId: string; connectUrl: string }>; + + void underlying.then( + (session) => { + if (!session?.sessionId) return; + if (!createdSessionIds.has(session.sessionId)) { + liveReleases.set(session.sessionId, liveSessionTracker.enter()); + } + createdSessionIds.add(session.sessionId); + if (cleanupComplete) void destroySession(session.sessionId); + }, + () => {}, + ); + + return withTimeout(underlying, timeout, 'Session creation timed out').then(session => ({ + ...session, + createMs: performance.now() - started, + })); + }; + + try { + // ── Phase 1: Create all N sessions in parallel ────────────────────────── + const createStart = performance.now(); + // Step names carry the level because the platform groups step + // distributions by name alone: a shared `create-all` would merge a + // 1-session create with a 50-session create into one distribution. + const createResults = await step(`create-all-c${concurrencyLevel}`, () => + Promise.allSettled(Array.from({ length: concurrencyLevel }, () => createTrackedSession())), + ); + createMs = performance.now() - createStart; + + aliveSessions = []; + const createErrors: string[] = []; + for (const result of createResults) { + if (result.status === 'fulfilled') { + aliveSessions.push(result.value); + continue; + } + // Keep the provider's own message: it is the only way to tell a quota + // rejection from a rate limit, an auth failure, or a timeout. + const reason = errorMessage(result.reason); + createErrors.push(reason); + if (/timed out/i.test(reason)) createTimedOut = true; + sessionResults.push({ + sessionId: '', + createMs: 0, + connectMs: 0, + taskMs: 0, + actionsCompleted: 0, + actionsPerSecond: 0, + actions: [], + error: reason, + }); + } + + log( + `c${concurrencyLevel} round ${roundIndex} create-all: ${aliveSessions.length}/${concurrencyLevel} created in ${Math.round(createMs)}ms`, + { + concurrencyLevel, + created: aliveSessions.length, + refused: createErrors.length, + createMs: Math.round(createMs), + ...(createErrors.length > 0 ? { reasons: reasonCounts(createErrors) } : {}), + }, + ); + + if (aliveSessions.length === 0) { + // A provider refusing every session is a result, not a harness fault. + // Throwing would lose this round's per-session errors, because the + // client records only an error message and drops the task's data. + roundError = 'All session creations failed'; + } + + // ── Phase 2: CDP-connect all sessions in parallel ─────────────────────── + const pages: Page[] = []; + const connectedSessions: CreatedSession[] = []; + const connectedConnectMs: number[] = []; + const connectErrors: string[] = []; + + if (aliveSessions.length > 0) { + const connectStart = performance.now(); + const connectResults = await step(`connect-all-c${concurrencyLevel}`, () => + Promise.allSettled( + aliveSessions.map(async (s) => { + const started = performance.now(); + const browser = await withTimeout( + chromium.connectOverCDP(s.connectUrl), + 30_000, + 'CDP connection timed out', + ); + return { browser, connectMs: performance.now() - started }; + }), + ), + ); + connectMs = performance.now() - connectStart; + + for (let i = 0; i < connectResults.length; i++) { + const result = connectResults[i]; + const session = aliveSessions[i]; + + if (result.status === 'rejected') { + connectErrors.push(errorMessage(result.reason)); + sessionResults.push({ + sessionId: session.sessionId, + createMs: session.createMs, + connectMs: 0, + taskMs: 0, + actionsCompleted: 0, + actionsPerSecond: 0, + actions: [], + error: errorMessage(result.reason), + }); + continue; + } + + const { browser, connectMs: sessionConnectMs } = result.value; + browsers.push(browser); + const [context] = browser.contexts(); + const page = context ? context.pages()[0] ?? (await context.newPage()) : undefined; + + if (!page) { + connectErrors.push('No default browser context found'); + sessionResults.push({ + sessionId: session.sessionId, + createMs: session.createMs, + connectMs: sessionConnectMs, + taskMs: 0, + actionsCompleted: 0, + actionsPerSecond: 0, + actions: [], + error: 'No default browser context found', + }); + continue; + } + + pages.push(page); + connectedSessions.push(session); + connectedConnectMs.push(sessionConnectMs); + } + + sessionsAlive = pages.length; + log( + `c${concurrencyLevel} round ${roundIndex} connect-all: ${pages.length}/${aliveSessions.length} connected in ${Math.round(connectMs)}ms`, + { + concurrencyLevel, + connected: pages.length, + failed: connectErrors.length, + connectMs: Math.round(connectMs), + ...(connectErrors.length > 0 ? { reasons: reasonCounts(connectErrors) } : {}), + }, + ); + if (pages.length === 0) roundError ??= 'All CDP connections failed'; + } + + // ─── BARRIER: all surviving sessions are alive + connected ────────────── + + // ── Phase 3: Run 10-action loop on all sessions simultaneously ────────── + if (pages.length > 0) { + // runActionLoop pushes to a passed array, so we create one per page. + const actionArrays: ActionResult[][] = pages.map(() => []); + const actionStart = performance.now(); + const deadline = actionStart + LEVEL_ACTION_BUDGET_MS; + const loopResults = await step(`actions-all-c${concurrencyLevel}`, () => + Promise.allSettled( + pages.map((page, i) => + runActionLoop(page, actionArrays[i], navUrlForSession(concurrencyLevel, roundIndex, i), { + loops, + deadline, + track: actionTracker, + }), + ), + ), + ); + taskMs = performance.now() - actionStart; + + let totalActionsCompleted = 0; + for (let i = 0; i < loopResults.length; i++) { + const result = loopResults[i]; + const session = connectedSessions[i]; + // Actions completed before a mid-loop throw are still measurements. + const actions = actionArrays[i]; + const actionsCompleted = actions.filter(a => a.success).length; + const sessionTaskMs = actions.reduce((sum, a) => sum + a.durationMs, 0); + totalActionsCompleted += actionsCompleted; + sessionResults.push({ + sessionId: session?.sessionId ?? '', + createMs: session?.createMs ?? 0, + connectMs: connectedConnectMs[i] ?? 0, + taskMs: sessionTaskMs, + actionsCompleted, + actionsPerSecond: sessionTaskMs > 0 ? actionsCompleted / (sessionTaskMs / 1000) : 0, + actions, + ...(result.status === 'rejected' ? { error: errorMessage(result.reason) } : {}), + }); + } + + aggregateActionsPerSecond = taskMs > 0 ? totalActionsCompleted / (taskMs / 1000) : 0; + } + + } catch (err) { + roundError = errorMessage(err); + harnessFailure = true; + } finally { + // Close all CDP browser connections + await Promise.allSettled(browsers.map(b => b.close().catch(() => {}))); + + // ── Phase 4: Release every session the provider created ───────────────── + // Runs in `finally` so a round that fails after creating sessions still + // releases them instead of holding provider quota until idle timeout. + const releaseStart = performance.now(); + const releaseAll = () => Promise.allSettled([...createdSessionIds].map(destroySession)); + if (harnessFailure) { + await releaseAll(); + } else { + await step(`release-all-c${concurrencyLevel}`, releaseAll, { reportConcurrency: false }); + } + releaseMs = performance.now() - releaseStart; + cleanupComplete = true; + } + + const maxConcurrentActions = actionWatch.stop(); + const maxLiveSessions = liveWatch.stop(); + + const totalMs = performance.now() - totalStart; + + const round: RoundResult = { + concurrencyLevel, + roundIndex, + sessionsAttempted: concurrencyLevel, + sessionsAlive, + createMs, + connectMs, + taskMs, + releaseMs, + totalMs, + aggregateActionsPerSecond, + maxLiveSessions, + maxConcurrentActions, + loopsPerSession: loops, + sessions: sessionResults, + ...(sessionResults.some(sessionHitActionTimeout) ? { actionTimedOut: true } : {}), + ...(createTimedOut ? { createTimedOut } : {}), + ...(sessionsAlive === 0 ? { roundFailed: true } : {}), + ...(roundError ? { error: roundError } : {}), + }; + + // Logged before the throw below so a harness failure still reports what the + // round achieved, not just that it died. + const actionsCompleted = sessionResults.reduce((sum, s) => sum + s.actionsCompleted, 0); + const actionsAttempted = sessionResults.reduce((sum, s) => sum + s.actions.length, 0); + log( + `c${concurrencyLevel} round ${roundIndex} complete: ${sessionsAlive}/${concurrencyLevel} sessions, ` + + `${actionsCompleted}/${actionsAttempted} actions in ${Math.round(totalMs)}ms, ` + + `peak ${maxConcurrentActions}/${concurrencyLevel} concurrent`, + { + concurrencyLevel, + sessionsAlive, + actionsCompleted, + actionsAttempted, + loopsPerSession: loops, + maxConcurrentActions, + maxLiveSessions, + aggregateActionsPerSecond: Math.round(aggregateActionsPerSecond * 100) / 100, + createMs: Math.round(createMs), + connectMs: Math.round(connectMs), + taskMs: Math.round(taskMs), + releaseMs: Math.round(releaseMs), + totalMs: Math.round(totalMs), + ...(roundError ? { roundError } : {}), + }, + ); + + // A level that never reached its own session count did not measure the + // concurrency it is filed under, and one that exceeded it was overlapping + // something else. Both make the level's numbers mean something other than + // their label, so neither is left to be noticed in the artifacts later. + if (sessionsAlive > 0 && maxConcurrentActions < sessionsAlive) { + log( + `c${concurrencyLevel} round ${roundIndex} never ran more than ${maxConcurrentActions} sessions at once ` + + `despite ${sessionsAlive} being connected`, + { concurrencyLevel, maxConcurrentActions, sessionsAlive }, + ); + } + if (maxLiveSessions > concurrencyLevel) { + log( + `c${concurrencyLevel} round ${roundIndex} saw ${maxLiveSessions} live sessions, more than the level's ${concurrencyLevel}: ` + + `another level's sessions were still alive`, + { concurrencyLevel, maxLiveSessions }, + ); + } + + return { round, harnessFailure }; +} + +// ── One task per concurrency level ─────────────────────────────────────────── +export const task = defineTask(async (ctx) => { + const { participant, taskIndex, phase, step, measure, log } = ctx; + + const concurrencyLevel = levelFromPhaseName(phase); + if (concurrencyLevel === undefined) { + throw new TaskError( + `Task ${taskIndex} has phase ${phase ?? '(none)'}, which names no concurrency level. ` + + `Levels are selected with --levels (${CONCURRENCY_LEVELS.join(', ')}), not --iterations.`, + { code: 'CONCURRENT_BAD_PHASE' }, + ); + } + + const roundCount = ROUNDS_OVERRIDE ?? ROUNDS_PER_LEVEL[concurrencyLevel]; + const rounds: RoundResult[] = []; + let harnessFailure = false; + let harnessError: string | undefined; + + for (let roundIndex = 0; roundIndex < roundCount; roundIndex++) { + const outcome = await runRound({ participant, step, log, concurrencyLevel, roundIndex }); + rounds.push(outcome.round); + // Collected as each round finishes, so a later harness failure still + // leaves the earlier rounds in the local result file. + collectRound(participant.name, concurrencyLevel, outcome.round); + if (outcome.harnessFailure) { + harnessFailure = true; + harnessError = outcome.round.error; + break; + } + } + + const sessionsAttempted = rounds.reduce((sum, r) => sum + r.sessionsAttempted, 0); + const sessionsAlive = rounds.reduce((sum, r) => sum + r.sessionsAlive, 0); + const actionsCompleted = rounds.reduce( + (sum, r) => sum + r.sessions.reduce((n, s) => n + s.actionsCompleted, 0), + 0, + ); + + measure({ concurrencyLevel, sessionsAttempted, sessionsAlive, actionsCompleted }); + + const data = { + concurrencyLevel, + roundsRun: rounds.length, + roundsPlanned: roundCount, + sessionsAttempted, + sessionsAlive, + actionsCompleted, + // Per-round aggregates only. The per-session and per-action detail stays in + // the local artifact: a c50 task covers 1,500 actions, which is far more + // than belongs in one task payload. + rounds: rounds.map(summarizeRoundForPlatform) as unknown as JsonValue, + ...(harnessError ? { errorMessage: harnessError } : {}), + }; + + log( + `c${concurrencyLevel} level complete: ${rounds.length}/${roundCount} rounds, ` + + `${sessionsAlive}/${sessionsAttempted} sessions, ${actionsCompleted} actions`, + { + concurrencyLevel, + roundsRun: rounds.length, + sessionsAlive, + sessionsAttempted, + actionsCompleted, + ...(harnessError ? { harnessError } : {}), + }, + ); + + // Levels run back to back inside one process, so the drain that used to sit + // between workflow invocations happens here. It runs before the throw below, + // because a level that failed part way through is the case most likely to + // have left sessions behind for the next level to trip over. Skipped after + // the last level, where it would only delay the run's completion. + if (taskIndex < SELECTED_LEVELS.length - 1 && LEVEL_COOLDOWN_MS > 0) { + await new Promise((resolve) => setTimeout(resolve, LEVEL_COOLDOWN_MS)); + } + + // Only our own bugs throw. A provider refusing sessions is data the benchmark + // exists to collect, and throwing would discard it: the client records an + // error message and drops the task's data payload entirely. + if (harnessFailure) { + throw new TaskError(harnessError ?? 'Level failed', { code: 'CONCURRENT_ERROR', data }); + } + + return { + data, + // The median round, not the level's wall clock. A level's duration is + // dominated by its round count (c1 runs 10 rounds, c50 only 3), so wall + // clock would rank c1 as the slowest level and inverts the very curve the + // task index exists to show. + latencyMs: median(rounds.filter((r) => !r.createTimedOut).map((r) => r.totalMs)), + }; +}); + +/** Per-round aggregate for the platform payload: no per-session detail. */ +function summarizeRoundForPlatform(round: RoundResult): Record { + const failures = round.sessions.map((s) => s.error).filter((e): e is string => Boolean(e)); + return { + roundIndex: round.roundIndex, + sessionsAttempted: round.sessionsAttempted, + sessionsAlive: round.sessionsAlive, + createMs: Math.round(round.createMs), + connectMs: Math.round(round.connectMs), + taskMs: Math.round(round.taskMs), + releaseMs: Math.round(round.releaseMs), + totalMs: Math.round(round.totalMs), + aggregateActionsPerSecond: Math.round(round.aggregateActionsPerSecond * 100) / 100, + // The measured peak, so a level that never reached its own session count is + // visible on the platform record rather than only in the artifacts. + ...(round.maxConcurrentActions !== undefined ? { maxConcurrentActions: round.maxConcurrentActions } : {}), + ...(round.maxLiveSessions !== undefined ? { maxLiveSessions: round.maxLiveSessions } : {}), + ...(round.loopsPerSession !== undefined ? { loopsPerSession: round.loopsPerSession } : {}), + ...(round.actionTimedOut ? { actionTimedOut: true } : {}), + ...(round.createTimedOut ? { createTimedOut: true } : {}), + ...(round.roundFailed ? { roundFailed: true } : {}), + ...(round.error ? { errorMessage: round.error } : {}), + // Counts rather than a sample, because a level can hit two distinct limits + // in one round: a concurrency cap on some sessions and a rate limit on the + // rest. + ...(failures.length > 0 ? { reasons: reasonCounts(failures) } : {}), + }; +} + +function median(values: number[]): number | undefined { + if (values.length === 0) return undefined; + const sorted = [...values].sort((a, b) => a - b); + const mid = Math.floor(sorted.length / 2); + return sorted.length % 2 === 0 ? (sorted[mid - 1] + sorted[mid]) / 2 : sorted[mid]; +} diff --git a/benchmarks/browser/concurrent-benchmark.ts b/benchmarks/browser/concurrent-benchmark.ts new file mode 100644 index 00000000..f86a50e2 --- /dev/null +++ b/benchmarks/browser/concurrent-benchmark.ts @@ -0,0 +1,354 @@ +/** + * Concurrent benchmark result summarization + legacy JSON writer. + * Mirrors throughput-benchmark.ts but works with rounds (barrier protocol + * executions) instead of individual sessions. + */ +import { + ACTION_TIMEOUT_MS, + ACTION_TYPES, + ACTIONS_PER_LOOP, + actionsPerSession, + type ConcurrencyLevel, + type ActionType, + type ConcurrentBenchmarkResult, + type ConcurrentStats, + type ConcurrentStatsTriple, + type RoundResult, + type SessionResult, + type ActionResult, +} from './concurrent-types.js'; + +function round(n: number): number { + return Math.round(n * 100) / 100; +} + +function percentile(sorted: number[], p: number): number { + if (sorted.length === 0) return 0; + const idx = Math.ceil((p / 100) * sorted.length) - 1; + return sorted[Math.min(Math.max(idx, 0), sorted.length - 1)]; +} + +/** + * Counts how many things are in flight and remembers the peak. + * + * Concurrency was previously inferred from how many sessions survived, but + * surviving and running at the same time are different properties: sessions + * taking turns would report the same sessionsAlive as sessions running + * together. Counting directly turns the level's claim into a measurement. + */ +export class ConcurrencyTracker { + private active = 0; + private watchers = new Set<{ max: number }>(); + + enter(): () => void { + this.active++; + for (const watcher of this.watchers) { + if (this.active > watcher.max) watcher.max = this.active; + } + let released = false; + return () => { + // Idempotent: a create that resolves after its timeout can release twice. + if (released) return; + released = true; + this.active--; + }; + } + + /** + * Start recording the peak from now until stop(). Seeded with whatever is + * already in flight, so a round that inherits sessions from a level that has + * not finished cleaning up reports them instead of starting from zero. + */ + watch(): { stop: () => number } { + const watcher = { max: this.active }; + this.watchers.add(watcher); + return { + stop: () => { + this.watchers.delete(watcher); + return watcher.max; + }, + }; + } +} + +/** + * Whether a session should begin another loop. The check sits on the loop + * boundary so every session in a level stops at the same point and the level + * holds its concurrency for as long as it runs; cutting sessions off mid-loop + * would leave partial loops in the samples and shrink concurrency unevenly. + * The first loop always runs, so a level always produces measurements. + */ +export function shouldStartLoop(loopIndex: number, now: number, deadline: number): boolean { + return loopIndex === 0 || now < deadline; +} + +/** + * Per-loop times for one session: its actions split into ACTIONS_PER_LOOP + * chunks, each summed. One loop on one session is the unit that compares across + * levels, since a level's action phase covers as many loops as that level runs. + */ +export function sessionLoopTimes(session: SessionResult): number[] { + const times: number[] = []; + for (let i = 0; i + ACTIONS_PER_LOOP <= session.actions.length; i += ACTIONS_PER_LOOP) { + let sum = 0; + for (let j = i; j < i + ACTIONS_PER_LOOP; j++) sum += session.actions[j].durationMs; + times.push(sum); + } + return times; +} + +function computeStats(values: number[]): ConcurrentStatsTriple { + if (values.length === 0) return { median: 0, p95: 0, p99: 0, samples: 0 }; + + const sorted = [...values].sort((a, b) => a - b); + const trimCount = Math.floor(sorted.length * 0.05); + const trimmed = trimCount > 0 && sorted.length - 2 * trimCount > 0 + ? sorted.slice(trimCount, sorted.length - trimCount) + : sorted; + + const mid = Math.floor(trimmed.length / 2); + const median = trimmed.length % 2 === 0 + ? (trimmed[mid - 1] + trimmed[mid]) / 2 + : trimmed[mid]; + + // The count is carried so consumers can withhold a percentile the sample size + // cannot support: with one observation the p95 is just the median again. + return { + median, + p95: percentile(trimmed, 95), + p99: percentile(trimmed, 99), + samples: values.length, + }; +} + +/** + * True when a session lost an action to the timeout. Such an action was cut off + * at the limit rather than measured, so anything derived from its duration + * reports the timeout constant instead of the provider's latency. + */ +export function sessionHitActionTimeout(session: SessionResult): boolean { + return session.actions.some( + (a) => + !a.success && + (a.durationMs >= ACTION_TIMEOUT_MS * 0.95 || /time(d)?\s?out/i.test(a.error ?? '')), + ); +} + +/** + * The round's action wall clock, with timed-out sessions taken out. + * + * A round ends when its slowest session ends, so one session stalled on an + * unusable page sets the whole round's duration: in run 31626532250 two of the + * fifty shared articles pushed otherwise 3-7s rounds to 31s and 63s, for every + * provider alike. Rebuilding the wall clock from the slowest *unaffected* + * session keeps the barrier's meaning while dropping the censored part. + * + * Rounds are not discarded wholesale, because each level runs one round and its + * sessions each draw a different page: at c50 a single bad article would + * otherwise erase the level's only latency observation. + */ +export function effectiveTaskMs(round: RoundResult): number { + const withActions = round.sessions.filter((s) => s.actions.length > 0); + if (withActions.length === 0) return round.taskMs; + + const clean = withActions.filter((s) => !sessionHitActionTimeout(s)); + if (clean.length === withActions.length) return round.taskMs; + // Every session was censored: the round says nothing about latency. + if (clean.length === 0) return 0; + + return Math.max(...clean.map((s) => s.taskMs)); +} + +/** + * Summarize rounds into aggregate stats. Per-action-type stats are computed + * across all sessions in all rounds — this is the degradation signal. + */ +export function summarizeRounds(rounds: RoundResult[]): ConcurrentStats { + // A create phase that hit the timeout is censored at the timeout value, not + // measured, so folding it into the latency distribution would report the + // timeout constant as if it were a provisioning time. The lost sessions are + // already penalized through the success rate. + const createValues = rounds + .filter(r => !r.createTimedOut) + .map(r => r.createMs) + .filter(v => v > 0); + const connectValues = rounds.map(r => r.connectMs).filter(v => v > 0); + const taskValues = rounds.map(effectiveTaskMs).filter(v => v > 0); + + // Pooled over every session and loop, so a level's sample count is + // level x loops rather than one per round. Sessions whose actions were cut + // off at the timeout are left out for the same reason their round's wall + // clock is rebuilt: the timeout is a censored value, not a measurement. + const loopValues: number[] = []; + for (const round of rounds) { + for (const session of round.sessions) { + if (sessionHitActionTimeout(session)) continue; + for (const loopMs of sessionLoopTimes(session)) { + if (loopMs > 0) loopValues.push(loopMs); + } + } + } + const sessionsAliveValues = rounds.map(r => r.sessionsAlive).filter(v => v > 0); + const aggregateApsValues = rounds.map(r => r.aggregateActionsPerSecond).filter(v => v > 0); + + // Per-session APS across all rounds + const perSessionApsValues: number[] = []; + for (const round of rounds) { + for (const session of round.sessions) { + if (session.actionsPerSecond > 0) perSessionApsValues.push(session.actionsPerSecond); + } + } + + // Per-action-type stats across all sessions in all rounds + const perActionType = {} as Record; + for (const type of ACTION_TYPES) { + const values: number[] = []; + for (const round of rounds) { + for (const session of round.sessions) { + for (const a of session.actions) { + if (a.type === type && a.success) values.push(a.durationMs); + } + } + } + perActionType[type] = computeStats(values); + } + + return { + sessionsAlive: computeStats(sessionsAliveValues), + createMs: computeStats(createValues), + connectMs: computeStats(connectValues), + taskMs: computeStats(taskValues), + loopMs: computeStats(loopValues), + actionsPerSecond: computeStats(aggregateApsValues), + perSessionActionsPerSecond: computeStats(perSessionApsValues), + perActionType, + }; +} + +export function emptySummary(): ConcurrentStats { + const empty: ConcurrentStatsTriple = { median: 0, p95: 0, p99: 0, samples: 0 }; + const perActionType = {} as Record; + for (const t of ACTION_TYPES) perActionType[t] = { ...empty }; + return { + sessionsAlive: { ...empty }, + createMs: { ...empty }, + connectMs: { ...empty }, + taskMs: { ...empty }, + loopMs: { ...empty }, + actionsPerSecond: { ...empty }, + perSessionActionsPerSecond: { ...empty }, + perActionType, + }; +} + +function roundStats(s: ConcurrentStatsTriple | undefined): ConcurrentStatsTriple { + // An artifact written before a stat existed deserializes without it, and the + // merge step reads whatever the providers uploaded, so a mix of old and new + // results has to serialize rather than crash on the missing field. Zero + // samples, so the percentile gates withhold it downstream. + if (!s) return { median: 0, p95: 0, p99: 0, samples: 0 }; + return { + median: round(s.median), + p95: round(s.p95), + p99: round(s.p99), + ...(s.samples !== undefined ? { samples: s.samples } : {}), + }; +} + +export async function writeConcurrentResultsJson( + results: ConcurrentBenchmarkResult[], + outPath: string, + options: { concurrencyLevel?: number; timeoutMs?: number } = {}, +): Promise { + const fs = await import('fs'); + const os = await import('os'); + + const cleanResults = results.map(r => ({ + provider: r.provider, + mode: r.mode, + concurrencyLevel: r.concurrencyLevel, + rounds: r.rounds.map(round => ({ + sessionsAttempted: round.sessionsAttempted, + sessionsAlive: round.sessionsAlive, + createMs: roundNum(round.createMs), + connectMs: roundNum(round.connectMs), + taskMs: roundNum(round.taskMs), + releaseMs: roundNum(round.releaseMs), + totalMs: roundNum(round.totalMs), + aggregateActionsPerSecond: roundNum(round.aggregateActionsPerSecond), + sessions: round.sessions.map(s => ({ + sessionId: s.sessionId, + createMs: roundNum(s.createMs), + connectMs: roundNum(s.connectMs), + taskMs: roundNum(s.taskMs), + actionsCompleted: s.actionsCompleted, + actionsPerSecond: roundNum(s.actionsPerSecond), + actions: s.actions.map(a => ({ + index: a.index, + type: a.type, + durationMs: roundNum(a.durationMs), + success: a.success, + ...(a.error ? { error: a.error } : {}), + })), + ...(s.error ? { error: s.error } : {}), + })), + ...(round.maxLiveSessions !== undefined ? { maxLiveSessions: round.maxLiveSessions } : {}), + ...(round.maxConcurrentActions !== undefined ? { maxConcurrentActions: round.maxConcurrentActions } : {}), + ...(round.loopsPerSession !== undefined ? { loopsPerSession: round.loopsPerSession } : {}), + ...(round.actionTimedOut ? { actionTimedOut: true } : {}), + ...(round.createTimedOut ? { createTimedOut: true } : {}), + ...(round.roundFailed ? { roundFailed: true } : {}), + ...(round.error ? { error: round.error } : {}), + })), + summary: { + sessionsAlive: roundStats(r.summary.sessionsAlive), + createMs: roundStats(r.summary.createMs), + connectMs: roundStats(r.summary.connectMs), + taskMs: roundStats(r.summary.taskMs), + loopMs: roundStats(r.summary.loopMs), + actionsPerSecond: roundStats(r.summary.actionsPerSecond), + perSessionActionsPerSecond: roundStats(r.summary.perSessionActionsPerSecond), + perActionType: Object.fromEntries( + ACTION_TYPES.map(t => [t, roundStats(r.summary.perActionType[t])]), + ), + }, + ...(r.compositeScore !== undefined ? { compositeScore: round(r.compositeScore) } : {}), + ...(r.successRate !== undefined ? { successRate: round(r.successRate) } : {}), + ...(r.sessionCeiling !== undefined ? { sessionCeiling: r.sessionCeiling } : {}), + ...(r.concurrencyAchieved !== undefined ? { concurrencyAchieved: r.concurrencyAchieved } : {}), + ...(r.latencyRepresentative !== undefined + ? { latencyRepresentative: r.latencyRepresentative } + : {}), + ...(r.quotaLimited ? { quotaLimited: true } : {}), + ...(r.quotaEvidence ? { quotaEvidence: r.quotaEvidence } : {}), + ...(r.skipped ? { skipped: r.skipped, skipReason: r.skipReason } : {}), + })); + + const rounds = results.reduce((max, r) => Math.max(max, r.rounds.length), 0); + const level = options.concurrencyLevel ?? results[0]?.concurrencyLevel ?? 0; + + const output = { + version: '1.0', + timestamp: new Date().toISOString(), + environment: { + node: process.version, + platform: os.platform(), + arch: os.arch(), + }, + config: { + concurrencyLevel: level, + rounds, + actionsPerSession: level > 0 ? actionsPerSession(level as ConcurrencyLevel) : 0, + loopsPerSession: results[0]?.rounds?.[0]?.loopsPerSession ?? 0, + timeoutMs: options.timeoutMs ?? 120_000, + }, + results: cleanResults, + }; + + fs.writeFileSync(outPath, JSON.stringify(output, null, 2)); + console.log(`Results written to ${outPath}`); +} + +function roundNum(n: number): number { + return Math.round(n * 100) / 100; +} diff --git a/benchmarks/browser/concurrent-capacity.ts b/benchmarks/browser/concurrent-capacity.ts new file mode 100644 index 00000000..6d832bc1 --- /dev/null +++ b/benchmarks/browser/concurrent-capacity.ts @@ -0,0 +1,110 @@ +/** + * Capacity analysis: what a provider actually delivered at a requested + * concurrency level, and whether its latency numbers mean anything. + * + * Latency percentiles are computed over surviving sessions only, so a provider + * that refuses most of the load measures itself on a nearly idle account. In + * one observed run a provider capped at 10 sessions posted the best task + * latency of any provider at c50 while delivering 14% of the sessions — its + * samples never experienced concurrency at all. Reporting that number next to + * a provider that ran all 50 compares two different experiments. + */ + +import type { ConcurrentBenchmarkResult } from './concurrent-types.js'; + +/** + * How close to the requested concurrency the sampled rounds must run before + * their latency is treated as comparable. Below this the level's latency + * describes a smaller experiment than the one requested. + */ +export const LATENCY_REPRESENTATIVE_RATIO = 0.9; + +/** + * Refusals naming an account limit rather than a capacity failure. These make + * a level unreachable for reasons of billing, so the resulting score measures + * the plan we bought rather than anything about the provider. + */ +const QUOTA_REFUSAL = /\b429\b|quota|rate limit|limit exceeded|limit reached/i; + +/** Longest quota message carried into the result; the full text stays on the session. */ +const MAX_EVIDENCE_LENGTH = 160; + +export interface CapacityAnalysis { + /** Most sessions the provider ran at once in any round. */ + sessionCeiling: number; + /** + * Mean sessions alive across rounds that produced any — the concurrency the + * latency samples actually experienced. Rounds where every session was + * refused contribute no samples, so they are excluded rather than averaged + * in as zeros. + */ + concurrencyAchieved: number; + /** True when the latency samples ran at (near) the requested concurrency. */ + latencyRepresentative: boolean; + /** True when the provider refused sessions citing an account limit and never reached the level. */ + quotaLimited: boolean; + /** The provider's own most frequent limit message, for attribution. */ + quotaEvidence?: string; +} + +/** + * Attach capacity fields to results that lack them. Result files written + * before these fields existed still carry a `compositeScore`, so a consumer + * that gates on the score alone would treat those results as fully analyzed + * and chart latency it should be withholding. + */ +export function ensureCapacityFields(results: ConcurrentBenchmarkResult[]): void { + for (const result of results) { + if (result.latencyRepresentative !== undefined) continue; + const capacity = analyzeCapacity(result); + result.sessionCeiling = capacity.sessionCeiling; + result.concurrencyAchieved = capacity.concurrencyAchieved; + result.latencyRepresentative = capacity.latencyRepresentative; + result.quotaLimited = capacity.quotaLimited; + if (capacity.quotaEvidence) result.quotaEvidence = capacity.quotaEvidence; + } +} + +export function analyzeCapacity(result: ConcurrentBenchmarkResult): CapacityAnalysis { + const roundsWithSessions = result.rounds.filter(r => r.sessionsAlive > 0); + const sessionCeiling = result.rounds.reduce((max, r) => Math.max(max, r.sessionsAlive), 0); + const concurrencyAchieved = + roundsWithSessions.length > 0 + ? roundsWithSessions.reduce((sum, r) => sum + r.sessionsAlive, 0) / roundsWithSessions.length + : 0; + + const refusalCounts = new Map(); + for (const round of result.rounds) { + for (const session of round.sessions) { + if (session.error && QUOTA_REFUSAL.test(session.error)) { + const key = session.error.slice(0, MAX_EVIDENCE_LENGTH); + refusalCounts.set(key, (refusalCounts.get(key) ?? 0) + 1); + } + } + } + + let quotaEvidence: string | undefined; + let mostSeen = 0; + for (const [message, count] of refusalCounts) { + if (count > mostSeen) { + mostSeen = count; + quotaEvidence = message; + } + } + + const latencyRepresentative = + concurrencyAchieved >= result.concurrencyLevel * LATENCY_REPRESENTATIVE_RATIO; + + return { + sessionCeiling, + concurrencyAchieved: Math.round(concurrencyAchieved * 100) / 100, + latencyRepresentative, + // Gated on sustaining the level rather than on the ceiling: a provider + // whose cap equals the level can still touch it for one round and spend + // the rest throttled, which is a quota limit even though the ceiling + // matches. Conversely a provider that hit a rate limit yet still ran the + // full load throughout was not capped by it. + quotaLimited: refusalCounts.size > 0 && !latencyRepresentative, + ...(quotaEvidence ? { quotaEvidence } : {}), + }; +} diff --git a/benchmarks/browser/concurrent-legacy-results.ts b/benchmarks/browser/concurrent-legacy-results.ts new file mode 100644 index 00000000..e121fde1 --- /dev/null +++ b/benchmarks/browser/concurrent-legacy-results.ts @@ -0,0 +1,70 @@ +import { mkdirSync, copyFileSync } from 'node:fs'; +import path from 'node:path'; +import { summarizeRounds, writeConcurrentResultsJson } from './concurrent-benchmark.js'; +import { computeConcurrentCompositeScores } from './concurrent-scoring.js'; +import { + CONCURRENCY_LEVELS, + type ConcurrentBenchmarkResult, + type RoundResult, +} from './concurrent-types.js'; + +/** Every round of the sweep, keyed by provider then concurrency level. */ +export type CollectedRounds = Map>; + +/** + * Write one result file per concurrency level, keeping the per-level layout the + * merge step and the SVG generators already read: + * results/browser-concurrent/c1/latest.json ... c50/latest.json + * + * Written from the rounds collected in process rather than from the records + * sent to the platform. The task payload carries per-round aggregates only, so + * reconstructing a round from it would silently drop every session and action. + */ +export async function writeConcurrentSweepResults( + collected: CollectedRounds, + opts: { resultsRoot: string; timeoutMs: number }, +): Promise { + const timestamp = new Date().toISOString().slice(0, 10); + + for (const level of CONCURRENCY_LEVELS) { + const results: ConcurrentBenchmarkResult[] = []; + + // Alphabetical, so the file does not reorder when providers finish in a + // different order. Rankings are applied by the scoring step, not by this. + for (const provider of [...collected.keys()].sort()) { + const rounds = collected.get(provider)?.get(level); + if (!rounds || rounds.length === 0) continue; + const ordered = [...rounds].sort((a, b) => a.roundIndex - b.roundIndex); + results.push({ + provider, + mode: 'browser-concurrent' as const, + concurrencyLevel: level, + rounds: ordered, + summary: summarizeRounds(ordered), + }); + } + + // A level with no rounds at all never ran: the run was interrupted before + // reaching it. Writing an empty file would overwrite a good result from an + // earlier run with one that has nothing in it. + if (results.length === 0) { + console.log(`No rounds recorded at c${level}; leaving its results untouched.`); + continue; + } + + computeConcurrentCompositeScores(results); + + const dir = path.join(opts.resultsRoot, `c${level}`); + mkdirSync(dir, { recursive: true }); + + const outPath = path.join(dir, `${timestamp}.json`); + await writeConcurrentResultsJson(results, outPath, { + concurrencyLevel: level, + timeoutMs: opts.timeoutMs, + }); + + const latestPath = path.join(dir, 'latest.json'); + copyFileSync(outPath, latestPath); + console.log(`Copied latest: ${latestPath}`); + } +} diff --git a/benchmarks/browser/concurrent-sampling.test.ts b/benchmarks/browser/concurrent-sampling.test.ts new file mode 100644 index 00000000..788b84a1 --- /dev/null +++ b/benchmarks/browser/concurrent-sampling.test.ts @@ -0,0 +1,294 @@ +/** + * Checks on the parts of the concurrency benchmark that no artifact can + * exercise: how concurrency is counted, when a level stops looping, and when a + * percentile has enough samples to report. + * + * pnpm test:browser-concurrent:sampling + */ +import assert from 'node:assert/strict'; +import { + ConcurrencyTracker, + sessionLoopTimes, + shouldStartLoop, + summarizeRounds, +} from './concurrent-benchmark.js'; +import { + computeConcurrentCompositeScores, + computeConcurrentSuccessRate, + computeSweepScore, + supportedP95, +} from './concurrent-scoring.js'; +import { + ACTIONS_PER_LOOP, + CONCURRENCY_LEVELS, + LOOPS_PER_LEVEL, + SWEEP_WEIGHTS, + MIN_SAMPLES_FOR_P95, + actionsPerSession, + type ActionResult, + type ActionType, + type ConcurrencyLevel, + type ConcurrentBenchmarkResult, + type RoundResult, + type SessionResult, +} from './concurrent-types.js'; + +let failures = 0; +function check(name: string, fn: () => void): void { + try { + fn(); + console.log(` ok ${name}`); + } catch (error) { + failures++; + console.error(` FAIL ${name}: ${error instanceof Error ? error.message : String(error)}`); + } +} + +function action(durationMs: number, success = true): ActionResult { + return { index: 1, type: 'navigate', durationMs, success, ...(success ? {} : { error: 'boom' }) }; +} + +function session(actions: ActionResult[]): SessionResult { + const completed = actions.filter((a) => a.success).length; + const taskMs = actions.reduce((sum, a) => sum + a.durationMs, 0); + return { + sessionId: 's', + createMs: 1, + connectMs: 1, + taskMs, + actionsCompleted: completed, + actionsPerSecond: 1, + actions, + }; +} + +function loopOf(durationMs: number): ActionResult[] { + return Array.from({ length: ACTIONS_PER_LOOP }, () => action(durationMs / ACTIONS_PER_LOOP)); +} + +function round(sessions: SessionResult[], level: number): RoundResult { + return { + concurrencyLevel: level, + roundIndex: 0, + sessionsAttempted: level, + sessionsAlive: sessions.length, + createMs: 100, + connectMs: 100, + taskMs: Math.max(...sessions.map((s) => s.taskMs), 0), + releaseMs: 10, + totalMs: 500, + aggregateActionsPerSecond: 1, + sessions, + }; +} + +console.log('ConcurrencyTracker'); + +check('reports the peak, not the total or the final count', () => { + const t = new ConcurrencyTracker(); + const w = t.watch(); + const a = t.enter(); + const b = t.enter(); + a(); + b(); + const c = t.enter(); + c(); + assert.equal(w.stop(), 2, 'three entries that never exceeded two at once should peak at two'); +}); + +check('distinguishes simultaneous from sequential', () => { + const together = new ConcurrencyTracker(); + const w1 = together.watch(); + const holds = [together.enter(), together.enter(), together.enter()]; + holds.forEach((release) => release()); + + const taking = new ConcurrencyTracker(); + const w2 = taking.watch(); + for (let i = 0; i < 3; i++) taking.enter()(); + + assert.equal(w1.stop(), 3); + assert.equal(w2.stop(), 1, 'sessions taking turns must not look like concurrency'); +}); + +check('release is idempotent, so a late create cannot double count', () => { + const t = new ConcurrencyTracker(); + const w = t.watch(); + const release = t.enter(); + release(); + release(); + const second = t.enter(); + assert.equal(w.stop(), 1); + second(); +}); + +check('a watch inherits what is already in flight', () => { + const t = new ConcurrencyTracker(); + const leaked = t.enter(); + const w = t.watch(); + assert.equal(w.stop(), 1, "a round starting with someone else's sessions live must report them"); + leaked(); +}); + +check('each watch sees only its own window', () => { + const t = new ConcurrencyTracker(); + const first = t.watch(); + const a = t.enter(); + const b = t.enter(); + a(); + b(); + assert.equal(first.stop(), 2); + const second = t.watch(); + const c = t.enter(); + assert.equal(second.stop(), 1, 'the later window must not inherit the earlier peak'); + c(); +}); + +console.log('\nAction budget'); + +check('the first loop always runs, even past the deadline', () => { + assert.equal(shouldStartLoop(0, 10_000, 5_000), true); +}); + +check('later loops stop once the budget is spent', () => { + assert.equal(shouldStartLoop(1, 4_999, 5_000), true); + assert.equal(shouldStartLoop(1, 5_000, 5_000), false); + assert.equal(shouldStartLoop(9, 6_000, 5_000), false); +}); + +console.log('\nPer-loop samples'); + +check('a session splits into one sample per loop', () => { + const s = session([...loopOf(1_000), ...loopOf(2_000), ...loopOf(3_000)]); + assert.deepEqual(sessionLoopTimes(s), [1_000, 2_000, 3_000]); +}); + +check('a trailing partial loop is not counted as a loop', () => { + const s = session([...loopOf(1_000), action(50)]); + assert.deepEqual(sessionLoopTimes(s), [1_000]); +}); + +check('the sample count is level x loops', () => { + for (const level of [1, 5, 10, 25, 50] as ConcurrencyLevel[]) { + const loops = LOOPS_PER_LEVEL[level]; + const sessions = Array.from({ length: level }, () => + session(Array.from({ length: loops }, () => loopOf(1_000)).flat()), + ); + const summary = summarizeRounds([round(sessions, level)]); + assert.equal( + summary.loopMs.samples, + level * loops, + `c${level} should pool ${level * loops} loop samples`, + ); + assert.equal(actionsPerSession(level), loops * ACTIONS_PER_LOOP); + } +}); + +check('sessions cut off at the action timeout stay out of the samples', () => { + const healthy = session(loopOf(1_000)); + const stalled = session([...loopOf(1_000).slice(0, 9), action(30_000, false)]); + const summary = summarizeRounds([round([healthy, stalled], 2)]); + assert.equal(summary.loopMs.samples, 1, 'only the healthy session should contribute'); +}); + +console.log('\nPercentile gates'); + +check('a p95 below the sample gate is withheld rather than repeated', () => { + const sessions = Array.from({ length: MIN_SAMPLES_FOR_P95 - 1 }, () => session(loopOf(1_000))); + const summary = summarizeRounds([round(sessions, sessions.length)]); + assert.equal(summary.loopMs.samples, MIN_SAMPLES_FOR_P95 - 1); + assert.equal(supportedP95(summary.loopMs), null); +}); + +check('a p95 at the gate is reported', () => { + const sessions = Array.from({ length: MIN_SAMPLES_FOR_P95 }, (_, i) => session(loopOf(1_000 + i * 10))); + const summary = summarizeRounds([round(sessions, sessions.length)]); + assert.equal(summary.loopMs.samples, MIN_SAMPLES_FOR_P95); + assert.notEqual(supportedP95(summary.loopMs), null); +}); + +console.log('\nNo partial credit'); + +check('a session whose browser dies mid-run is a failure, not a partial success', () => { + // notte at c1 in run 2026-08-14: 132 of 200 actions succeeded, then every + // action failed with "Target page, context or browser has been closed". + const actions = Array.from({ length: 200 }, (_, i) => ({ + index: i + 1, + type: 'navigate' as ActionType, + durationMs: 500, + success: i < 132, + ...(i < 132 ? {} : { error: 'Target page, context or browser has been closed' }), + })); + const died: SessionResult = { ...session(actions), actionsCompleted: 132 }; + const result = { + provider: 'test', + concurrencyLevel: 1 as ConcurrencyLevel, + rounds: [round([died], 1)], + summary: summarizeRounds([round([died], 1)]), + } as ConcurrentBenchmarkResult; + assert.equal(computeConcurrentSuccessRate(result), 0); + computeConcurrentCompositeScores([result]); + // The success rate multiplies the composite, so no credit survives for the + // 132 actions that did work. + assert.equal(result.compositeScore, 0); +}); + +check('a session stopped by our own action budget still counts as a success', () => { + // Same shape, except every action it attempted succeeded: the harness ended + // the work, so this is not the provider failing. + const stopped = session(Array.from({ length: 130 }, () => loopOf(500)).flat()); + const result = { + provider: 'test', + concurrencyLevel: 1 as ConcurrencyLevel, + rounds: [round([stopped], 1)], + summary: summarizeRounds([round([stopped], 1)]), + } as ConcurrentBenchmarkResult; + assert.equal(computeConcurrentSuccessRate(result), 1); +}); + +console.log('\nSweep score'); + +check('the weights cover every level and sum to 1', () => { + const total = CONCURRENCY_LEVELS.reduce((sum, level) => sum + SWEEP_WEIGHTS[level], 0); + assert.equal(CONCURRENCY_LEVELS.every((level) => SWEEP_WEIGHTS[level] > 0), true); + assert.ok(Math.abs(total - 1) < 1e-9, `weights sum to ${total}`); +}); + +check('c25 and c50 carry most of the score', () => { + assert.ok(SWEEP_WEIGHTS[25] + SWEEP_WEIGHTS[50] >= 0.7); + // Monotonic, so a harder level is never worth less than an easier one. + for (let i = 1; i < CONCURRENCY_LEVELS.length; i++) { + assert.ok(SWEEP_WEIGHTS[CONCURRENCY_LEVELS[i]!] > SWEEP_WEIGHTS[CONCURRENCY_LEVELS[i - 1]!]); + } +}); + +check('a perfect score at every level is 100', () => { + const all = new Map(CONCURRENCY_LEVELS.map((level) => [level, 100])); + assert.equal(computeSweepScore(all), 100); +}); + +check('a missing level costs its weight instead of being renormalised away', () => { + const noFifty = new Map( + CONCURRENCY_LEVELS.filter((level) => level !== 50).map((level) => [level, 100]), + ); + // Renormalising over the four levels that ran would score this 100. + assert.equal(computeSweepScore(noFifty), 60); +}); + +check('an explicit zero and an absent level cost the same', () => { + const zeroed = new Map( + CONCURRENCY_LEVELS.map((level) => [level, level === 50 ? 0 : 100]), + ); + const absent = new Map( + CONCURRENCY_LEVELS.filter((level) => level !== 50).map((level) => [level, 100]), + ); + assert.equal(computeSweepScore(zeroed), computeSweepScore(absent)); +}); + +check('holding up beats being quick then collapsing', () => { + const collapses = new Map([[1, 95], [5, 95], [10, 90], [25, 30], [50, 10]]); + const holds = new Map([[1, 70], [5, 70], [10, 70], [25, 70], [50, 70]]); + assert.ok(computeSweepScore(holds) > computeSweepScore(collapses)); +}); + +console.log(failures === 0 ? '\nall checks passed' : `\n${failures} check(s) failed`); +process.exit(failures === 0 ? 0 : 1); diff --git a/benchmarks/browser/concurrent-scoring.ts b/benchmarks/browser/concurrent-scoring.ts new file mode 100644 index 00000000..7b81e304 --- /dev/null +++ b/benchmarks/browser/concurrent-scoring.ts @@ -0,0 +1,162 @@ +import { analyzeCapacity } from './concurrent-capacity.js'; +import { + CONCURRENCY_LEVELS, + MIN_SAMPLES_FOR_P95, + SWEEP_WEIGHTS, + type ConcurrentBenchmarkResult, + type ConcurrentStatsTriple, +} from './concurrent-types.js'; + +export interface ConcurrentScoringWeights { + createMedian: number; + taskMedian: number; + taskP95: number; + screenshotMedian: number; + perSessionApsMedian: number; +} + +export const DEFAULT_CONCURRENT_WEIGHTS: ConcurrentScoringWeights = { + createMedian: 0.30, // provisioning under load + taskMedian: 0.25, // per-round task time under load + taskP95: 0.20, // tail consistency under load + screenshotMedian: 0.15, // vision-agent proxy under load + perSessionApsMedian: 0.10, // per-session throughput under load +}; + +/** Linear score for actions/sec — 10 actions/sec saturates at 100. */ +const APS_CEILING = 10; +/** Latency ceiling in ms — anything >= this scores 0. */ +const LATENCY_CEILING_MS = 30_000; + +function scoreThroughput(actionsPerSecond: number): number { + if (!Number.isFinite(actionsPerSecond) || actionsPerSecond <= 0) return 0; + return Math.max(0, Math.min(100, 100 * (actionsPerSecond / APS_CEILING))); +} + +function scoreLatency(valueMs: number): number { + if (!Number.isFinite(valueMs)) return 0; + return Math.max(0, 100 * (1 - valueMs / LATENCY_CEILING_MS)); +} + +/** + * One score per provider across the whole sweep, weighted by SWEEP_WEIGHTS. + * + * A level with no result scores zero and keeps its weight. Renormalising over + * the levels that did run would mean failing at c50 removes the hardest test + * from the denominator, so a provider capped at 25 sessions would be scored as + * though 25 were all it was ever asked for. Not running a level has to cost its + * weight. + */ +export function computeSweepScore(scoreByLevel: Map): number { + let total = 0; + for (const level of CONCURRENCY_LEVELS) { + total += SWEEP_WEIGHTS[level] * (scoreByLevel.get(level) ?? 0); + } + return Math.round(total * 100) / 100; +} + +/** + * The p95, or null when too few samples stand behind it. An absent count means + * the artifact predates sample tracking, and an unknown sample size cannot + * support the claim either. + */ +export function supportedP95(stats: ConcurrentStatsTriple): number | null { + if (stats.samples === undefined || stats.samples < MIN_SAMPLES_FOR_P95) return null; + return stats.p95; +} + +/** + * Compute the success rate for a concurrent benchmark result (0 to 1). + * + * A session counts as successful iff every action it attempted succeeded, and + * it attempted at least one. Comparing against a fixed total would misread a + * session that stopped early because the level ran out of its action budget: + * that is the harness ending the work, not the provider failing it. Partial + * completions still contribute timing data but are not counted as successes. + * + * The denominator is the number of sessions *attempted*, not the number + * recorded. A round where the provider refused every session records no + * sessions at all, so counting recorded sessions would make wholesale failures + * invisible and let a provider that served 10 of 50 sessions report 100%. + */ +export function computeConcurrentSuccessRate(result: ConcurrentBenchmarkResult): number { + if (result.skipped || result.rounds.length === 0) return 0; + let attempted = 0; + let fullySuccessful = 0; + for (const round of result.rounds) { + attempted += round.sessionsAttempted || round.sessions.length; + for (const session of round.sessions) { + const attemptedActions = session.actions.length; + if (!session.error && attemptedActions > 0 && session.actionsCompleted === attemptedActions) { + fullySuccessful++; + } + } + } + return attempted > 0 ? fullySuccessful / attempted : 0; +} + +function computeConcurrentScore( + result: ConcurrentBenchmarkResult, + weights: ConcurrentScoringWeights = DEFAULT_CONCURRENT_WEIGHTS, +): number { + const screenshotMedian = result.summary.perActionType.screenshot?.median ?? 0; + // Per-loop rather than per-round: a level's action phase covers as many loops + // as that level runs, so round wall clocks are not comparable between levels. + // Artifacts written before loopMs existed ran one loop per session, where the + // round wall clock was the same measurement, so they still score. + const loop = result.summary.loopMs ?? result.summary.taskMs; + return ( + weights.createMedian * scoreLatency(result.summary.createMs.median) + + weights.taskMedian * scoreLatency(loop.median) + + // A p95 the sample count cannot support is the median again, so scoring it + // would weight one measurement twice instead of rewarding a tight tail. + weights.taskP95 * scoreLatency(supportedP95(loop) ?? loop.median) + + weights.screenshotMedian * scoreLatency(screenshotMedian) + + weights.perSessionApsMedian * scoreThroughput(result.summary.perSessionActionsPerSecond.median) + ); +} + +/** + * Compute composite scores for all concurrent results and attach them. + * + * Formula: compositeScore = concurrentScore × successRate + */ +export function computeConcurrentCompositeScores( + results: ConcurrentBenchmarkResult[], + weights: ConcurrentScoringWeights = DEFAULT_CONCURRENT_WEIGHTS, +): void { + for (const result of results) { + const successRate = computeConcurrentSuccessRate(result); + result.successRate = successRate; + + const capacity = analyzeCapacity(result); + result.sessionCeiling = capacity.sessionCeiling; + result.concurrencyAchieved = capacity.concurrencyAchieved; + result.latencyRepresentative = capacity.latencyRepresentative; + result.quotaLimited = capacity.quotaLimited; + if (capacity.quotaEvidence) result.quotaEvidence = capacity.quotaEvidence; + + if (result.skipped || successRate === 0) { + result.compositeScore = 0; + continue; + } + + const baseScore = computeConcurrentScore(result, weights); + result.compositeScore = Math.round(baseScore * successRate * 100) / 100; + } +} + +/** + * Sort concurrent benchmark results by composite score (highest first). + * Skipped providers are always last. + */ +export function sortConcurrentByCompositeScore( + results: ConcurrentBenchmarkResult[], +): ConcurrentBenchmarkResult[] { + return [...results].sort((a, b) => { + if (a.skipped && !b.skipped) return 1; + if (!a.skipped && b.skipped) return -1; + if (a.skipped && b.skipped) return 0; + return (b.compositeScore ?? 0) - (a.compositeScore ?? 0); + }); +} diff --git a/benchmarks/browser/concurrent-types.ts b/benchmarks/browser/concurrent-types.ts new file mode 100644 index 00000000..b827ece2 --- /dev/null +++ b/benchmarks/browser/concurrent-types.ts @@ -0,0 +1,337 @@ +/** + * Types for the browser concurrent sessions benchmark. + * + * Each "round" creates N browser sessions in parallel, waits for all to be + * alive + connected (barrier), runs a fixed 10-action loop on every session + * simultaneously, then releases all. N is the concurrency level, and each level + * is one phase of the run: the level's task runs every round at that level, so + * ROUNDS_PER_LEVEL fixes the round count and `--levels` picks which levels run. + * + * Results are organized by concurrency level, mirroring the storage + * benchmark's per-file-size directories: + * + * results/browser-concurrent/c1/latest.json (baseline, 1 session at a time) + * results/browser-concurrent/c5/latest.json (5 sessions concurrently) + * results/browser-concurrent/c10/latest.json (10 sessions concurrently) + * results/browser-concurrent/c25/latest.json (25 sessions concurrently) + * results/browser-concurrent/c50/latest.json (50 sessions concurrently) + */ + +/** Number of discrete actions in one loop (matches throughput benchmark). */ +export const ACTIONS_PER_LOOP = 10; + +/** + * Loops each session repeats, per level. + * + * The comparable unit across levels is one loop: ten actions on one session + * while `level` sessions run concurrently. Sample count is therefore + * `level x loops`, and with one loop everywhere the cheap levels were left with + * far too few: c1 produced a single session and ten actions, so its success + * rate could only be 0% or 100% and its latency had no distribution at all. + * + * Repeating loops inside the session buys samples without asking the provider + * for more browsers, which is the expensive part. These counts even the sample + * budget out at roughly 20-50 loops per level. + */ +export const LOOPS_PER_LEVEL: Record = { + 1: 20, + 5: 4, + 10: 2, + 25: 1, + 50: 1, +}; + +/** Actions one session runs at a level, when it completes every loop. */ +export function actionsPerSession(level: ConcurrencyLevel): number { + return LOOPS_PER_LEVEL[level] * ACTIONS_PER_LOOP; +} + +/** + * Wall-clock ceiling on a level's action phase. A session checks it between + * loops, so every session stops at the same loop boundary and the level keeps + * its concurrency while it runs. Without it a slow provider would spend hours + * on c1: notte averaged 3.6s per action, which is 12 minutes for 20 loops. + * Levels cut short report fewer samples, which the percentile gates then + * account for. + */ +export const LEVEL_ACTION_BUDGET_MS = (() => { + const raw = process.env.CONCURRENT_LEVEL_ACTION_BUDGET_MS; + if (raw === undefined) return 240_000; + const value = Number(raw); + if (!Number.isFinite(value) || value <= 0) { + throw new Error(`CONCURRENT_LEVEL_ACTION_BUDGET_MS must be a positive number (got ${raw})`); + } + return value; +})(); + +/** + * How much each level contributes to the sweep score. + * + * Weighted toward the levels that actually stress a provider: c25 and c50 carry + * 70% between them, while the cheap levels still count for something, since a + * provider that is slow at c1 is slow everywhere. Equal weighting ranked a + * provider capped at 10 sessions fifth of seven on the strength of cells that + * barely test anything, and put a provider that degrades at c50 ahead of one + * that holds. + */ +export const SWEEP_WEIGHTS: Record = { + 1: 0.05, + 5: 0.10, + 10: 0.15, + 25: 0.30, + 50: 0.40, +}; + +/** + * Samples a percentile needs before it means anything. Below the p95 gate the + * value is indistinguishable from the median, so reporting it claims knowledge + * the run does not have. + */ +export const MIN_SAMPLES_FOR_P95 = 20; +export const MIN_SAMPLES_FOR_P99 = 100; + +/** + * Per-action timeout. Shared so the summarizer can recognise an action that was + * cut off at the limit rather than measured, and leave it out of latency stats. + */ +export const ACTION_TIMEOUT_MS = 30_000; + +export type ActionType = 'navigate' | 'waitForSelector' | 'screenshot' | 'textContent' | 'click' | 'goBack'; + +export const ACTION_TYPES: ActionType[] = [ + 'navigate', + 'waitForSelector', + 'screenshot', + 'textContent', + 'click', + 'goBack', +]; + +/** Concurrency levels sweeped for the degradation curve. */ +export const CONCURRENCY_LEVELS = [1, 5, 10, 25, 50] as const; +export type ConcurrencyLevel = (typeof CONCURRENCY_LEVELS)[number]; + +/** + * Barrier rounds run at each level. One task per level means the level's task + * runs all of its rounds, so these counts live here rather than in the + * workflow. + * + * One round each: a level's sessions are the sample. c50 pools 50 sessions and + * 500 actions from a single round, which is what the per-session and + * per-action stats are built from. The round-level wall clocks (create, connect, + * task, release) get one observation per level as a consequence, so their median + * and p95 are the same number — see CONCURRENT_ROUNDS_PER_LEVEL to raise this + * locally, and keep any override at 25 or below, since each round reports four + * steps against a 100-step limit per task record. + */ +export const ROUNDS_PER_LEVEL: Record = { + 1: 1, + 5: 1, + 10: 1, + 25: 1, + 50: 1, +}; + +/** Phase name for a level. Each level is one phase, so records carry `c25`. */ +export function phaseNameForLevel(level: number): string { + return `c${level}`; +} + +/** + * Level a phase name refers to. + * + * The level is read back from the phase rather than from the task index, + * because the index is positional: running a subset would otherwise map task 0 + * to c1 no matter which level was actually asked for. + */ +export function levelFromPhaseName(phase: string | undefined): ConcurrencyLevel | undefined { + return CONCURRENCY_LEVELS.find((level) => phaseNameForLevel(level) === phase); +} + +/** Parses a `--levels 1,5` value into levels, or reports what was wrong. */ +export function parseLevels(raw: string | undefined): { + levels: ConcurrencyLevel[]; + error?: string; +} { + if (!raw) return { levels: [...CONCURRENCY_LEVELS] }; + const requested = raw.split(',').map((part) => part.trim()).filter(Boolean); + const unknown = requested.filter( + (part) => !CONCURRENCY_LEVELS.some((level) => String(level) === part), + ); + if (requested.length === 0 || unknown.length > 0) { + return { + levels: [], + error: + `Invalid --levels "${raw}"` + + (unknown.length > 0 ? `: unknown level(s) ${unknown.join(', ')}` : '') + + `. Choose from ${CONCURRENCY_LEVELS.join(', ')}.`, + }; + } + // Ascending regardless of the order given, so the sweep always climbs and the + // cooldown between levels is never asked to shed a bigger level into a + // smaller one. + return { + levels: CONCURRENCY_LEVELS.filter((level) => requested.includes(String(level))), + }; +} + +export interface ActionResult { + /** 1-based index of the action within the session (1-10) */ + index: number; + type: ActionType; + durationMs: number; + success: boolean; + error?: string; +} + +/** Per-session timing data collected during one barrier round. */ +export interface SessionResult { + /** Provider session ID */ + sessionId: string; + /** Time to create this session in ms (parallel with N-1 others) */ + createMs: number; + /** Time to CDP-connect this session in ms */ + connectMs: number; + /** Sum of action durations for this session */ + taskMs: number; + /** How many of 10 actions succeeded */ + actionsCompleted: number; + /** actionsCompleted / (taskMs / 1000) */ + actionsPerSecond: number; + /** Per-action results, in order */ + actions: ActionResult[]; + /** Error message if this session failed before actions */ + error?: string; +} + +/** Per-round (one barrier protocol execution) timing data. */ +export interface RoundResult { + /** Sessions held open simultaneously during this round. */ + concurrencyLevel: number; + /** Position of this round within its level, from 0. */ + roundIndex: number; + /** How many sessions were attempted (= concurrency level) */ + sessionsAttempted: number; + /** How many sessions survived create + connect */ + sessionsAlive: number; + /** Wall clock to create all N sessions in parallel */ + createMs: number; + /** Wall clock to CDP-connect all N sessions in parallel */ + connectMs: number; + /** Wall clock for all N action loops to complete in parallel */ + taskMs: number; + /** Wall clock to release all N sessions in parallel */ + releaseMs: number; + /** Total round wall clock */ + totalMs: number; + /** Aggregate actions/sec across all N sessions */ + aggregateActionsPerSecond: number; + /** Per-session results */ + sessions: SessionResult[]; + /** Error message if the entire round failed */ + error?: string; + /** True when no session survived create + connect, so the round produced no timings. */ + roundFailed?: boolean; + /** + * Highest number of sessions this round held on the provider at once, counted + * from create to destroy. It is measured rather than assumed: a level that + * overlapped its neighbour would report more than sessionsAttempted here, + * which is how a c1 level once ran against 91 live sessions unnoticed. + */ + maxLiveSessions?: number; + /** + * Highest number of sessions running actions simultaneously. This is the + * number the level claims to test, so a c50 round that never reaches 50 did + * not exercise the concurrency it reports. + */ + maxConcurrentActions?: number; + /** Loops each session was asked to run, before any budget cutoff. */ + loopsPerSession?: number; + /** + * True when at least one action hit the per-action timeout. Those actions were + * cut off at the limit rather than measured, so the round's action wall clock + * is censored and the summarizer rebuilds it from the unaffected sessions. + */ + actionTimedOut?: boolean; + /** + * True when at least one create hit the timeout. The parallel create wall + * clock is then censored by the timeout rather than measured, so it is + * excluded from latency stats and counted only as a failure. + */ + createTimedOut?: boolean; +} + +export interface ConcurrentStatsTriple { + median: number; + p95: number; + p99: number; + /** + * Observations behind the numbers above. Consumers compare it against + * MIN_SAMPLES_FOR_P95 / MIN_SAMPLES_FOR_P99 and withhold what it cannot + * support, rather than printing the median three times over. + */ + samples?: number; +} + +export interface ConcurrentStats { + /** Sessions alive per round */ + sessionsAlive: ConcurrentStatsTriple; + /** Parallel create wall clock */ + createMs: ConcurrentStatsTriple; + /** Parallel connect wall clock */ + connectMs: ConcurrentStatsTriple; + /** Parallel action loop wall clock, for the whole action phase of a round */ + taskMs: ConcurrentStatsTriple; + /** + * One session's time for one ten-action loop, pooled over every session and + * loop in the level. This is the latency metric that compares across levels: + * taskMs covers a whole action phase, so a level running 20 loops is not + * comparable to one running 1. + */ + loopMs: ConcurrentStatsTriple; + /** Aggregate actions/sec across all sessions */ + actionsPerSecond: ConcurrentStatsTriple; + /** Per-session actions/sec (the degradation signal) */ + perSessionActionsPerSecond: ConcurrentStatsTriple; + /** Per-action-type stats, aggregated across all sessions in all rounds */ + perActionType: Record; +} + +export interface ConcurrentBenchmarkResult { + provider: string; + mode: 'browser-concurrent'; + /** Concurrency level (N sessions per round) */ + concurrencyLevel: number; + /** Barrier rounds executed */ + rounds: RoundResult[]; + summary: ConcurrentStats; + /** Composite weighted score (0-100, higher = better). Computed post-benchmark. */ + compositeScore?: number; + /** Success rate as a fraction (0 to 1). Computed post-benchmark. */ + successRate?: number; + /** Most sessions run at once in any round. Computed post-benchmark. */ + sessionCeiling?: number; + /** Concurrency the latency samples actually experienced. Computed post-benchmark. */ + concurrencyAchieved?: number; + /** + * False when the provider never sustained the requested concurrency, so its + * latency describes a smaller experiment and must not be charted alongside + * providers that ran the full load. + */ + latencyRepresentative?: boolean; + /** True when an account limit, not capacity, kept the level out of reach. */ + quotaLimited?: boolean; + /** The provider's own limit message, for attribution. */ + quotaEvidence?: string; + skipped?: boolean; + skipReason?: string; +} + +export interface ConcurrentProviderConfig { + name: string; + iterations?: number; + timeout?: number; + requiredEnvVars: string[]; + createBrowserProvider: () => any; + sessionCreateOptions?: Record; +} diff --git a/benchmarks/browser/generate-concurrent-svg.ts b/benchmarks/browser/generate-concurrent-svg.ts new file mode 100644 index 00000000..9b2ba554 --- /dev/null +++ b/benchmarks/browser/generate-concurrent-svg.ts @@ -0,0 +1,498 @@ +/** + * SVG generator for the browser concurrent sessions benchmark. + * + * Produces two SVGs: + * 1. browser-concurrent.svg — ranked leaderboard table from the highest + * available concurrency level (like the throughput benchmark's SVG). + * 2. browser-concurrent-degradation.svg — multi-line chart showing median + * per-action latency vs. concurrency level for each provider (the + * degradation curve). Requires results from multiple concurrency levels. + * + * tsx benchmarks/browser/generate-concurrent-svg.ts + * tsx benchmarks/browser/generate-concurrent-svg.ts --action-type screenshot + */ +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; +import { + CONCURRENCY_LEVELS, + type ActionType, + type ConcurrentBenchmarkResult, +} from './concurrent-types.js'; +import { + computeConcurrentCompositeScores, + sortConcurrentByCompositeScore, + supportedP95, +} from './concurrent-scoring.js'; +import { ensureCapacityFields } from './concurrent-capacity.js'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const ROOT = path.resolve(__dirname, '../..'); +const RESULTS_DIR = path.join(ROOT, 'results', 'browser-concurrent'); + +const LOGO_C_PATH = `M1036.26,1002.28h237.87l-.93,19.09c-8.38,110.32-49.81,198.3-123.82,262.07-73.09,63.31-170.84,95.43-290.48,95.43-130.81,0-235.55-44.69-311.43-133.6-74.48-87.98-112.65-209.48-112.65-361.23v-60.51c0-96.83,17.7-183.41,51.68-257.43,34.91-74.95,85.19-133.61,149.89-173.63,64.7-40.04,140.12-60.52,225.3-60.52,117.77,0,214.13,32.12,286.29,95.9,72.62,63.3,114.98,153.61,126.15,267.67l1.86,19.08h-238.34l-.93-15.83c-4.65-59.11-20.95-101.94-47.95-127.08-27-25.6-69.83-38.17-127.08-38.17-61.91,0-107.06,20.95-137.33,65.17-31.65,45.15-47.94,117.77-48.87,215.53v74.48c0,102.41,15.36,177.83,45.62,223.91,28.86,44.22,74.01,65.63,137.79,65.63,58.19,0,101.48-12.57,128.95-38.17,26.99-25.14,43.29-66.1,47.48-121.5l.93-16.3Z`; + +interface ResultFile { + version: string; + timestamp: string; + results: ConcurrentBenchmarkResult[]; + config: { concurrencyLevel?: number }; +} + +// ── CLI args ──────────────────────────────────────────────────────────────── +const args = process.argv.slice(2); +function getArgValue(flag: string): string | undefined { + const idx = args.indexOf(flag); + return idx !== -1 && idx + 1 < args.length ? args[idx + 1] : undefined; +} +const actionTypeArg = (getArgValue('--action-type') ?? 'screenshot') as ActionType; + +// ── Helpers ────────────────────────────────────────────────────────────────── +/** Provider limit messages carry `&`, `<` and quotes; unescaped they break the SVG. */ +function escapeXml(s: string): string { + return s + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/"/g, '"'); +} + +function formatProviderName(s: string): string { + return s.charAt(0).toUpperCase() + s.slice(1); +} + +function formatMs(ms: number): string { + return `${Math.round(ms)}ms`; +} + +function formatSeconds(ms: number): string { + return (ms / 1000).toFixed(2) + 's'; +} + +// ── Find the highest available concurrency level ──────────────────────────── +function findHighestLevel(): number { + let highest = 0; + for (const level of CONCURRENCY_LEVELS) { + const p = path.join(RESULTS_DIR, `c${level}`, 'latest.json'); + if (fs.existsSync(p)) highest = level; + } + return highest; +} + +// ── Leaderboard SVG (from highest concurrency level) ───────────────────────── +function generateLeaderboardSVG( + results: ConcurrentBenchmarkResult[], + timestamp: string, + concurrencyLevel: number, +): string { + if (!results.every(r => r.compositeScore !== undefined)) { + computeConcurrentCompositeScores(results); + } + ensureCapacityFields(results); + + const sorted = sortConcurrentByCompositeScore(results).filter(r => !r.skipped); + + const withheld = sorted.filter(r => r.latencyRepresentative === false); + const quotaCapped = sorted.filter(r => r.quotaLimited); + const footerLines = [ + `Each round creates ${concurrencyLevel} sessions in parallel, holds all alive (barrier), runs 10 actions on each simultaneously, then releases all. Lower latency is better.`, + ]; + if (withheld.length > 0) { + footerLines.push( + `-- latency withheld, load not sustained: ${withheld + .map(r => `${formatProviderName(r.provider)} held ${Math.round(r.concurrencyAchieved ?? 0)}/${concurrencyLevel}`) + .join(', ')}. Timings taken while most of the load was refused are not comparable.`, + ); + } + if (quotaCapped.length > 0) { + footerLines.push( + `* capped by an account limit rather than capacity: ${quotaCapped + .map(r => formatProviderName(r.provider)) + .join(', ')}.`, + ); + } + + const rowHeight = 44; + const headerHeight = 110; + const tableHeaderHeight = 44; + const padding = 24; + const width = 1280; + const tableTop = headerHeight + padding; + const tableBottom = tableTop + tableHeaderHeight + (sorted.length * rowHeight); + const height = tableBottom + padding + 30 + 20 + (footerLines.length - 1) * 14; + + const cols = { + rank: 40, + provider: 80, + score: 240, + create: 360, + task: 500, + taskP95: 640, + screenshot: 780, + aps: 920, + alive: 1060, + status: 1180, + }; + + const title = 'Browser Concurrent Sessions Benchmarks'; + const subtitle = `${concurrencyLevel} concurrent sessions per round — barrier-protocol (all sessions alive before actions)`; + + let svg = ` + + + + + + + + + + + + + + + + + + ${title} + ${subtitle} + + + + # + Provider + Score + Create (med) + Loop (med) + Loop (p95) + Screenshot + Per-sess APS + Alive + Success +`; + + sorted.forEach((r, i) => { + const y = tableTop + tableHeaderHeight + (i * rowHeight) + 30; + const rank = i + 1; + const createMed = r.summary.createMs.median; + // Per-loop, the unit that compares across levels. + const loop = r.summary.loopMs; + const taskMed = loop?.median ?? null; + const taskP95 = loop ? supportedP95(loop) : null; + const screenshotMed = r.summary.perActionType.screenshot?.median ?? 0; + const perSessionAps = r.summary.perSessionActionsPerSecond.median; + const aliveMed = r.summary.sessionsAlive.median; + + // Count successful sessions across all rounds + let totalSessions = 0; + let fullSuccess = 0; + for (const round of r.rounds) { + for (const session of round.sessions) { + totalSessions++; + const attempted = session.actions.length; + if (!session.error && attempted > 0 && session.actionsCompleted === attempted) fullSuccess++; + } + } + const allFailed = fullSuccess === 0; + // Latency measured while most of the load was refused describes a smaller + // experiment than the one requested, so it is withheld rather than shown + // next to providers that ran the full level. + const hideLatency = allFailed || r.latencyRepresentative === false; + const score = r.compositeScore !== undefined ? r.compositeScore.toFixed(1) : '--'; + + let speedClass = hideLatency ? 'slow' : 'fast'; + if (!hideLatency && perSessionAps < 1.0) speedClass = 'slow'; + else if (!hideLatency && perSessionAps < 2.5) speedClass = 'medium'; + + let rankClass = 'rank'; + if (rank === 1) rankClass = 'rank rank-1'; + else if (rank === 2) rankClass = 'rank rank-2'; + else if (rank === 3) rankClass = 'rank rank-3'; + + // Attempted sessions, not recorded ones: a round the provider refused + // outright records nothing, so recorded-session denominators hide it. + const successPct = + r.successRate !== undefined + ? (r.successRate * 100).toFixed(0) + : totalSessions > 0 + ? ((fullSuccess / totalSessions) * 100).toFixed(0) + : '0'; + // The sustained figure, not the best round: a provider that touched the + // full level once and spent the rest throttled would otherwise report the + // peak as if it were typical. + const sustained = r.concurrencyAchieved !== undefined ? Math.round(r.concurrencyAchieved) : aliveMed; + + svg += ` + ${rank} + ${formatProviderName(r.provider)} + ${score} + ${hideLatency ? '--' : formatSeconds(createMed)} + ${hideLatency || taskMed === null ? '--' : formatSeconds(taskMed)} + ${hideLatency || taskP95 === null ? '--' : formatSeconds(taskP95)} + ${hideLatency ? '--' : formatMs(screenshotMed)} + ${hideLatency ? '--' : perSessionAps.toFixed(2) + '/s'} + ${sustained}/${r.concurrencyLevel}${r.quotaLimited ? ' *' : ''} + ${successPct}% +`; + + if (i < sorted.length - 1) { + const lineY = tableTop + tableHeaderHeight + ((i + 1) * rowHeight); + svg += ` \n`; + } + }); + + const date = new Date(timestamp).toLocaleDateString('en-US', { + year: 'numeric', month: 'short', day: 'numeric', + hour: '2-digit', minute: '2-digit', timeZoneName: 'short', + }); + + const footerTop = height - 14 - (footerLines.length - 1) * 14; + + svg += ` + Last updated: ${date} +${footerLines + .map((line, i) => ` ${escapeXml(line)}`) + .join('\n')} +`; + + return svg; +} + +// ── Degradation curve SVG ─────────────────────────────────────────────────── +const PROVIDER_COLORS: Record = { + browserbase: '#0969da', + steel: '#cf222e', + hyperbrowser: '#1a7f37', + kernel: '#8250df', + notte: '#9a6700', + tilion: '#0550ae', + browseruse: '#d4a000', +}; + +function generateDegradationSVG( + dataByLevel: Map, + actionType: ActionType, +): string { + const levels = CONCURRENCY_LEVELS.filter(l => dataByLevel.has(l)); + if (levels.length < 2) { + console.log('Not enough concurrency levels for a degradation curve (need >= 2)'); + return ''; + } + + // Collect all providers that have data at all levels + const providerSet = new Set(); + for (const level of levels) { + for (const r of dataByLevel.get(level)!) { + if (!r.skipped) providerSet.add(r.provider); + } + } + const providers = [...providerSet].sort(); + + const padding = 80; + const width = 1000; + const chartHeight = 400; + const headerHeight = 110; + const legendHeight = 40; + const height = headerHeight + chartHeight + legendHeight + padding; + + const chartLeft = padding; + const chartRight = width - padding; + const chartTop = headerHeight; + const chartBottom = headerHeight + chartHeight; + const chartWidth = chartRight - chartLeft; + + // Find max latency for Y axis scaling + // Scaled over charted points only, so a withheld outlier can't stretch the + // axis and flatten every line that is actually plotted. + let maxLatency = 0; + for (const level of levels) { + for (const r of dataByLevel.get(level)!) { + if (r.skipped || r.latencyRepresentative === false) continue; + const med = r.summary.perActionType[actionType]?.median ?? 0; + if (med > maxLatency) maxLatency = med; + } + } + // Round up to a nice number + const yMax = Math.ceil(maxLatency / 500) * 500 || 1000; + + const xScale = (level: number): number => { + const minL = levels[0]; + const maxL = levels[levels.length - 1]; + if (maxL === minL) return chartLeft + chartWidth / 2; + // Log-ish scale for better spacing at low levels + const logMin = Math.log10(minL); + const logMax = Math.log10(maxL); + const t = (Math.log10(level) - logMin) / (logMax - logMin); + return chartLeft + t * chartWidth; + }; + + const yScale = (ms: number): number => { + return chartBottom - (ms / yMax) * chartHeight; + }; + + const title = 'Browser Concurrent — Degradation Curve'; + const subtitle = `Median ${actionType} latency vs. concurrent sessions — a line ends at the highest level the provider sustained`; + + let svg = ` + + + + ${title} + ${subtitle} +`; + + // Y axis grid lines + labels + const ySteps = 5; + for (let i = 0; i <= ySteps; i++) { + const ms = (yMax / ySteps) * i; + const y = yScale(ms); + svg += ` \n`; + svg += ` ${Math.round(ms)}ms\n`; + } + + // X axis + svg += ` \n`; + svg += ` \n`; + + // X axis labels + for (const level of levels) { + const x = xScale(level); + svg += ` ${level}\n`; + } + svg += ` Concurrent Sessions\n`; + svg += ` Latency (ms)\n`; + + // Plot lines for each provider + const legendEntries: { name: string; color: string }[] = []; + const ceilingNotes: string[] = []; + for (const provider of providers) { + const color = PROVIDER_COLORS[provider] ?? '#656d76'; + legendEntries.push({ name: provider, color }); + + const points: string[] = []; + let sustainedLevel = 0; + for (const level of levels) { + const results = dataByLevel.get(level)!; + const r = results.find(r => r.provider === provider && !r.skipped); + if (!r) continue; + // A level the provider never sustained produces latency for a smaller + // experiment. Plotting it reads as "flat under load" when the truth is + // that the load was refused, so the line simply ends here. + // + // The note reports the highest level actually sustained, not the peak + // session count: a provider can touch 13 sessions in one round of c50 + // while sustaining nothing above c1, and reporting 13 would credit it + // with a concurrency it never held. + if (r.latencyRepresentative === false) { + ceilingNotes.push(`${formatProviderName(provider)} ${sustainedLevel}${r.quotaLimited ? '*' : ''}`); + break; + } + sustainedLevel = level; + const med = r.summary.perActionType[actionType]?.median ?? 0; + if (med > 0) { + const x = xScale(level); + const y = yScale(med); + points.push(`${x},${y}`); + } + } + + // A single sustained level still deserves its marker; only the connecting + // line needs two. + if (points.length >= 2) { + svg += ` \n`; + } + for (const p of points) { + const [x, y] = p.split(',').map(Number); + svg += ` \n`; + } + } + + // Legend + let legendX = padding; + const legendY = height - 20; + for (const entry of legendEntries) { + svg += ` \n`; + svg += ` ${formatProviderName(entry.name)}\n`; + legendX += 18 + formatProviderName(entry.name).length * 7 + 24; + } + + if (ceilingNotes.length > 0) { + svg += ` Highest concurrency sustained: ${escapeXml(ceilingNotes.join(', '))} (* account limit, not capacity)\n`; + } + + svg += ``; + return svg; +} + +// ── Main ──────────────────────────────────────────────────────────────────── +function main() { + // ── Leaderboard SVG (from highest available concurrency level) ───────────── + const highestLevel = findHighestLevel(); + if (highestLevel === 0) { + console.error(`No concurrent benchmark results found in ${RESULTS_DIR}`); + process.exit(1); + } + + const highestPath = path.join(RESULTS_DIR, `c${highestLevel}`, 'latest.json'); + const highestRaw = fs.readFileSync(highestPath, 'utf-8'); + const highestData: ResultFile = JSON.parse(highestRaw); + + const leaderboardSvg = generateLeaderboardSVG( + highestData.results, + highestData.timestamp, + highestLevel, + ); + const leaderboardPath = path.join(ROOT, 'browser-concurrent.svg'); + fs.writeFileSync(leaderboardPath, leaderboardSvg); + console.log(`Leaderboard SVG written to ${leaderboardPath}`); + + // ── Degradation curve SVG (requires multiple concurrency levels) ─────────── + const dataByLevel = new Map(); + for (const level of CONCURRENCY_LEVELS) { + const p = path.join(RESULTS_DIR, `c${level}`, 'latest.json'); + if (!fs.existsSync(p)) continue; + const raw = fs.readFileSync(p, 'utf-8'); + const data: ResultFile = JSON.parse(raw); + ensureCapacityFields(data.results); + dataByLevel.set(level, data.results); + } + + const degradationSvg = generateDegradationSVG(dataByLevel, actionTypeArg); + if (degradationSvg) { + const degradationPath = path.join(ROOT, 'browser-concurrent-degradation.svg'); + fs.writeFileSync(degradationPath, degradationSvg); + console.log(`Degradation SVG written to ${degradationPath}`); + } +} + +main(); diff --git a/benchmarks/src/merge-results.ts b/benchmarks/src/merge-results.ts index 793546c5..08244300 100644 --- a/benchmarks/src/merge-results.ts +++ b/benchmarks/src/merge-results.ts @@ -1,7 +1,7 @@ /** * Merge per-provider benchmark results into combined result files. * - * Usage: tsx src/merge-results.ts --input [--mode storage|snapshot-fork|browser|browser-throughput|ai-gateway] + * Usage: tsx src/merge-results.ts --input [--mode storage|snapshot-fork|browser|browser-throughput|browser-concurrent|ai-gateway] * * By default, merges sandbox benchmark results: reads latest.json files from * the input directory, groups by mode (sequential/staggered/burst), computes @@ -21,6 +21,11 @@ * With --mode ai-gateway, merges AI gateway benchmark results: deduplicates * by provider, computes AI-gateway-specific composite scores, and writes * combined files to results/ai-gateway/latest.json. + * + * With --mode browser-concurrent, merges concurrent benchmark results: + * groups by concurrency level (c1/c5/c10/c25/c50), deduplicates by provider + * within each level, computes concurrent-specific composite scores, and + * writes combined files to results/browser-concurrent//latest.json. */ import fs from 'fs'; import path from 'path'; @@ -33,12 +38,23 @@ import { sortThroughputByCompositeScore, } from '../browser/throughput-scoring.js'; import { computeAIGatewayCompositeScores, sortAIGatewayByCompositeScore } from '../ai-gateway/scoring.js'; +import { + computeConcurrentCompositeScores, + computeSweepScore, + sortConcurrentByCompositeScore, + supportedP95, +} from '../browser/concurrent-scoring.js'; import { printResultsTable, writeResultsJson } from '../sandbox/table.js'; import type { BenchmarkResult } from '../sandbox/types.js'; import type { StorageBenchmarkResult } from '../storage/types.js'; import type { SnapshotForkBenchmarkResult } from '../storage/snapshot-fork-types.js'; import type { BrowserBenchmarkResult } from '../browser/types.js'; import type { ThroughputBenchmarkResult } from '../browser/throughput-types.js'; +import { + CONCURRENCY_LEVELS, + SWEEP_WEIGHTS, + type ConcurrentBenchmarkResult, +} from '../browser/concurrent-types.js'; import type { AIGatewayBenchmarkResult } from '../ai-gateway/types.js'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -734,6 +750,223 @@ async function mainAIGateway() { console.log(`Copied latest: ${latestPath}`); } +/** + * Merge browser-concurrent benchmark results. Results from different + * concurrency levels are stored in separate subdirectories (c1, c5, c10, + * c25, c50). Each subdirectory's latest.json contains results from a single + * provider (one CI job per provider × concurrency level). This function + * merges all providers' results within each concurrency level. + */ +async function mainBrowserConcurrent() { + // Find all latest.json files, grouped by concurrency level directory + const jsonFiles: string[] = []; + function walk(dir: string) { + if (!fs.existsSync(dir)) return; + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const full = path.join(dir, entry.name); + if (entry.isDirectory()) walk(full); + else if (entry.name === 'latest.json') jsonFiles.push(full); + } + } + walk(path.resolve(inputDir!)); + + if (jsonFiles.length === 0) { + console.error(`No latest.json files found in ${inputDir}`); + process.exit(1); + } + + console.log(`Found ${jsonFiles.length} result files`); + + // Group files by their parent directory name (c1, c5, c10, c25, c50) + const filesByLevel = new Map(); + for (const file of jsonFiles) { + const levelDir = path.basename(path.dirname(file)); + if (!filesByLevel.has(levelDir)) filesByLevel.set(levelDir, []); + filesByLevel.get(levelDir)!.push(file); + } + + const { writeConcurrentResultsJson } = await import('../browser/concurrent-benchmark.js'); + + // provider -> level -> composite, collected across the loop so the sweep score + // can weight every level once they have all been merged. + const scoresByProvider = new Map>(); + const quotaLimitedProviders = new Set(); + + for (const [levelDir, files] of filesByLevel) { + const seen = new Map(); + + for (const file of files) { + const raw = JSON.parse(fs.readFileSync(file, 'utf-8')) as { results: ConcurrentBenchmarkResult[] }; + const fromSingleProvider = raw.results.length === 1; + for (const result of raw.results) { + const existing = seen.get(result.provider); + if (!existing || (fromSingleProvider && !existing.fromSingleProvider)) { + seen.set(result.provider, { result, fromSingleProvider }); + } + } + } + + const deduped = Array.from(seen.values()).map(e => e.result); + const concurrencyLevel = deduped[0]?.concurrencyLevel ?? parseInt(levelDir.replace('c', ''), 10); + console.log(`\nMerging ${deduped.length} provider results for mode: browser-concurrent (c${concurrencyLevel})`); + + computeConcurrentCompositeScores(deduped); + + for (const r of deduped) { + if (!scoresByProvider.has(r.provider)) scoresByProvider.set(r.provider, new Map()); + // A skipped level scores zero rather than going unrecorded, so it costs its + // weight instead of quietly shrinking the denominator. + scoresByProvider.get(r.provider)!.set(concurrencyLevel, r.skipped ? 0 : r.compositeScore); + if (r.quotaLimited) quotaLimitedProviders.add(r.provider); + } + + // Print table + const sorted = sortConcurrentByCompositeScore(deduped); + console.log(`\n${'='.repeat(120)}`); + console.log(` BROWSER CONCURRENT BENCHMARK RESULTS (c${concurrencyLevel})`); + console.log('='.repeat(120)); + console.log( + ['Provider', 'Score', 'Create', 'Loop', 'Loop (p95)', 'Screenshot', 'APS/sess', 'Peak', 'Success'] + .map((h, i) => h.padEnd([14, 8, 10, 10, 10, 12, 10, 8, 10][i])) + .join(' | '), + ); + for (const r of sorted) { + if (r.skipped) continue; + const score = r.compositeScore !== undefined ? r.compositeScore.toFixed(1) : '--'; + // Withheld for the same reason the charts withhold it: timings sampled + // while most of the load was refused describe a smaller experiment. + const hideLatency = r.latencyRepresentative === false; + const createMed = hideLatency ? '--' : `${(r.summary.createMs.median / 1000).toFixed(2)}s`; + // Per-loop: one session's ten actions while the level's sessions run + // together. taskMs covers a level's whole action phase, and levels differ + // in how many loops that is. + // No fallback to taskMs here: presenting a whole action phase under a + // per-loop heading would relabel the number rather than report it. + const loop = r.summary.loopMs; + const taskMed = hideLatency || !loop ? '--' : `${(loop.median / 1000).toFixed(2)}s`; + const p95 = loop ? supportedP95(loop) : null; + // Dashed rather than repeated: below the sample gate the p95 is the median. + const taskP95 = hideLatency || p95 === null ? '--' : `${(p95 / 1000).toFixed(2)}s`; + const screenshotMed = hideLatency + ? '--' + : `${Math.round(r.summary.perActionType.screenshot?.median ?? 0)}ms`; + const aps = hideLatency ? '--' : r.summary.perSessionActionsPerSecond.median.toFixed(2); + // Measured peak simultaneity where the rounds recorded it, so the column + // says how many sessions actually ran together rather than how many + // survived. Falls back for artifacts written before the counter existed. + const measuredPeak = r.rounds.reduce( + (max, round) => Math.max(max, round.maxConcurrentActions ?? 0), + 0, + ); + const sustained = measuredPeak > 0 + ? measuredPeak + : r.concurrencyAchieved !== undefined + ? Math.round(r.concurrencyAchieved) + : r.summary.sessionsAlive.median; + const alive = `${sustained}/${r.concurrencyLevel}${r.quotaLimited ? '*' : ''}`; + let totalSessions = 0, fullSuccess = 0; + for (const round of r.rounds) { + for (const session of round.sessions) { + totalSessions++; + // Same all-or-nothing rule as computeConcurrentSuccessRate, against the + // actions the session attempted. The old fixed 10 predates sessions + // running more than one loop, so it counted a session that completed + // all 200 of its actions as a failure. + const attempted = session.actions.length; + if (!session.error && attempted > 0 && session.actionsCompleted === attempted) fullSuccess++; + } + } + const successPct = + r.successRate !== undefined + ? `${(r.successRate * 100).toFixed(0)}%` + : totalSessions > 0 + ? `${((fullSuccess / totalSessions) * 100).toFixed(0)}%` + : '0%'; + console.log([r.provider.padEnd(14), score.padEnd(8), createMed.padEnd(10), taskMed.padEnd(10), taskP95.padEnd(10), screenshotMed.padEnd(12), aps.padEnd(10), alive.padEnd(8), successPct.padEnd(10)].join(' | ')); + } + console.log('='.repeat(120)); + const withheld = sorted.filter(r => !r.skipped && r.latencyRepresentative === false); + if (withheld.length > 0) { + console.log( + ` -- latency withheld, load not sustained: ${withheld + .map(r => `${r.provider} held ${Math.round(r.concurrencyAchieved ?? 0)}/${r.concurrencyLevel}`) + .join(', ')}`, + ); + } + const quotaCapped = sorted.filter(r => r.quotaLimited); + if (quotaCapped.length > 0) { + console.log(` * capped by an account limit, not capacity: ${quotaCapped.map(r => r.provider).join(', ')}`); + for (const r of quotaCapped) { + if (r.quotaEvidence) console.log(` ${r.provider}: ${r.quotaEvidence}`); + } + } + + // Write combined results + const timestamp = new Date().toISOString().slice(0, 10); + const resultsDir = path.resolve(ROOT, `results/browser-concurrent/${levelDir}`); + fs.mkdirSync(resultsDir, { recursive: true }); + + const outPath = path.join(resultsDir, `${timestamp}.json`); + await writeConcurrentResultsJson(deduped, outPath, { concurrencyLevel }); + + const latestPath = path.join(resultsDir, 'latest.json'); + fs.copyFileSync(outPath, latestPath); + console.log(`Copied latest: ${latestPath}`); + } + + printConcurrentSweepTable(scoresByProvider, quotaLimitedProviders); +} + +/** + * One score per provider across every level, so the sweep has a headline number + * without any single level standing in for the whole curve. Printed after the + * per-level tables rather than instead of them: the curve is the finding, and one + * number cannot show where a provider stopped keeping up. + */ +function printConcurrentSweepTable( + scoresByProvider: Map>, + quotaLimited: Set, +): void { + if (scoresByProvider.size === 0) return; + + const rows = Array.from(scoresByProvider.entries()) + .map(([provider, byLevel]) => ({ provider, byLevel, sweep: computeSweepScore(byLevel) })) + .sort((a, b) => b.sweep - a.sweep); + + const weights = CONCURRENCY_LEVELS.map(l => `c${l} ${(SWEEP_WEIGHTS[l] * 100).toFixed(0)}%`).join(' '); + console.log(`\n${'='.repeat(120)}`); + console.log(' BROWSER CONCURRENCY SWEEP SCORE'); + console.log('='.repeat(120)); + console.log(` weights: ${weights} (a level with no result scores 0 and keeps its weight)`); + console.log('-'.repeat(120)); + console.log( + ['Provider'.padEnd(14), 'Sweep'.padEnd(8), ...CONCURRENCY_LEVELS.map(l => `c${l}`.padEnd(8))].join(' | '), + ); + console.log('-'.repeat(120)); + for (const { provider, byLevel, sweep } of rows) { + // '--' distinguishes a level that never ran from one that scored zero. Both + // cost the weight, but only one of them was attempted. + const cells = CONCURRENCY_LEVELS.map(l => { + const score = byLevel.get(l); + return (score === undefined ? '--' : score.toFixed(1)).padEnd(8); + }); + const name = `${provider}${quotaLimited.has(provider) ? '*' : ''}`; + console.log([name.padEnd(14), sweep.toFixed(1).padEnd(8), ...cells].join(' | ')); + } + console.log('='.repeat(120)); + const missing = rows.filter(r => CONCURRENCY_LEVELS.some(l => r.byLevel.get(l) === undefined)); + if (missing.length > 0) { + console.log( + ` -- levels with no result count as 0: ${missing + .map(r => `${r.provider} (${CONCURRENCY_LEVELS.filter(l => r.byLevel.get(l) === undefined).map(l => `c${l}`).join(', ')})`) + .join('; ')}`, + ); + } + if (quotaLimited.size > 0) { + console.log(` * capped by an account limit, not capacity: ${Array.from(quotaLimited).join(', ')}`); + } +} + const runner = mergeMode === 'storage' ? mainStorage : mergeMode === 'snapshot-fork' @@ -742,6 +975,8 @@ const runner = mergeMode === 'storage' ? mainBrowser : mergeMode === 'browser-throughput' ? mainBrowserThroughput + : mergeMode === 'browser-concurrent' + ? mainBrowserConcurrent : mergeMode === 'ai-gateway' ? mainAIGateway : main; diff --git a/browser-concurrent-degradation.svg b/browser-concurrent-degradation.svg new file mode 100644 index 00000000..9317d84a --- /dev/null +++ b/browser-concurrent-degradation.svg @@ -0,0 +1,86 @@ + + + + + Browser Concurrent — Degradation Curve + Median screenshot latency vs. concurrent sessions — a line ends at the highest level the provider sustained + + 0ms + + 1100ms + + 2200ms + + 3300ms + + 4400ms + + 5500ms + + + 1 + 5 + 10 + 25 + 50 + Concurrent Sessions + Latency (ms) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Browserbase + + Browseruse + + Hyperbrowser + + Kernel + + Notte + + Steel + + Tilion + Highest concurrency sustained: Kernel 10*, Notte 5*, Steel 5* (* account limit, not capacity) + \ No newline at end of file diff --git a/browser-concurrent.svg b/browser-concurrent.svg new file mode 100644 index 00000000..916a7679 --- /dev/null +++ b/browser-concurrent.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + Browser Concurrent Sessions Benchmarks + 50 concurrent sessions per round — barrier-protocol (all sessions alive before actions) + + + + # + Provider + Score + Create (med) + Loop (med) + Loop (p95) + Screenshot + Per-sess APS + Alive + Success + + 1 + Browserbase + 86.5 + 0.49s + 2.84s + 3.35s + 309ms + 3.51/s + 50/50 + 98% + + + 2 + Browseruse + 83.7 + 0.59s + 3.95s + 4.58s + 307ms + 2.53/s + 50/50 + 98% + + + 3 + Hyperbrowser + 79.2 + 1.15s + 5.41s + 7.74s + 468ms + 1.82/s + 50/50 + 98% + + + 4 + Tilion + 78.3 + 2.22s + 5.80s + 6.74s + 470ms + 1.72/s + 50/50 + 98% + + + 5 + Kernel + 18.0 + -- + -- + -- + -- + -- + 10/50 * + 20% + + + 6 + Steel + 7.8 + -- + -- + -- + -- + -- + 5/50 * + 10% + + + 7 + Notte + 4.7 + -- + -- + -- + -- + -- + 8/50 * + 12% + + Last updated: Aug 18, 2026, 04:30 PM UTC + Each round creates 50 sessions in parallel, holds all alive (barrier), runs 10 actions on each simultaneously, then releases all. Lower latency is better. + -- latency withheld, load not sustained: Kernel held 10/50, Steel held 5/50, Notte held 8/50. Timings taken while most of the load was refused are not comparable. + * capped by an account limit rather than capacity: Kernel, Steel, Notte. + \ No newline at end of file diff --git a/package.json b/package.json index 69e64213..e988b682 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,16 @@ "bench:browser-throughput:kernel": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-throughput.bench.ts --provider kernel", "bench:browser-throughput:steel": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-throughput.bench.ts --provider steel", "bench:browser-throughput:tilion": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-throughput.bench.ts --provider tilion", + "bench:browser-concurrent": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts", + "bench:browser-concurrent:smoke": "CONCURRENT_LEVEL_COOLDOWN_MS=0 tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --levels 1,5", + "test:browser-concurrent:sampling": "tsx benchmarks/browser/concurrent-sampling.test.ts", + "bench:browser-concurrent:browserbase": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider browserbase", + "bench:browser-concurrent:browseruse": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider browseruse", + "bench:browser-concurrent:hyperbrowser": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider hyperbrowser", + "bench:browser-concurrent:kernel": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider kernel", + "bench:browser-concurrent:notte": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider notte", + "bench:browser-concurrent:steel": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider steel", + "bench:browser-concurrent:tilion": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/browser/browser-concurrent.bench.ts --provider tilion", "bench:storage": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/storage/storage.bench.ts", "bench:storage:s3": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/storage/storage.bench.ts --provider aws-s3", "bench:storage:r2": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/storage/storage.bench.ts --provider cloudflare-r2", @@ -79,6 +89,7 @@ "generate-snapshot-fork-svg": "tsx benchmarks/storage/generate-snapshot-fork-svg.ts", "generate-browser-svg": "tsx benchmarks/browser/generate-svg.ts", "generate-browser-throughput-svg": "tsx benchmarks/browser/generate-throughput-svg.ts", + "generate-browser-concurrent-svg": "tsx benchmarks/browser/generate-concurrent-svg.ts", "generate-pricing-svg": "tsx benchmarks/sandbox/generate-pricing-svg.ts", "bench:ai-gateway": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/ai-gateway/ai-gateway.bench.ts", "bench:ai-gateway:openrouter": "tsx packages/benchsdk-runner/dist/bin.js run benchmarks/ai-gateway/ai-gateway.bench.ts --provider openrouter", diff --git a/packages/benchsdk-runner/src/cli.ts b/packages/benchsdk-runner/src/cli.ts index 71089261..a07f1886 100644 --- a/packages/benchsdk-runner/src/cli.ts +++ b/packages/benchsdk-runner/src/cli.ts @@ -78,6 +78,13 @@ export async function run(argv: string[]): Promise { process.exit(0); } console.error('Benchmark failed:', err instanceof Error ? err.message : err); + // A BenchmarkApiError's message carries only the status line; the response + // body holds the validation reason, so without this a failure reads as a + // bare "400 Bad Request". + const body = (err as { body?: unknown } | null)?.body; + if (typeof body === 'string' && body.trim()) { + console.error('Response body:', body.slice(0, 2000)); + } process.exit(1); } } diff --git a/results/browser-concurrent/c1/2026-08-14.json b/results/browser-concurrent/c1/2026-08-14.json new file mode 100644 index 00000000..f16ac9b2 --- /dev/null +++ b/results/browser-concurrent/c1/2026-08-14.json @@ -0,0 +1,9319 @@ +{ + "version": "1.0", + "timestamp": "2026-08-14T18:36:03.249Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 1, + "rounds": 1, + "actionsPerSession": 200, + "loopsPerSession": 20, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 369.73, + "connectMs": 305.41, + "taskMs": 37685.71, + "releaseMs": 273.38, + "totalMs": 38640.92, + "aggregateActionsPerSecond": 5.31, + "sessions": [ + { + "sessionId": "d5992a84-bce4-4909-82b3-aa4a633cd0c0", + "createMs": 368.36, + "connectMs": 305.32, + "taskMs": 37683.17, + "actionsCompleted": 200, + "actionsPerSecond": 5.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 507.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 256.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 197.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 250.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 316.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 342.76, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.47, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 162.11, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 114.75, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 195.15, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.58, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 265.64, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 318.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 281.02, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.47, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 153.84, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 216.34, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 95.84, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 165.84, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 7.24, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 242.21, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 301.17, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 230.79, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.16, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 31.39, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 198.02, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 263.09, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 114.36, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 397.21, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.99, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 491.76, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 289.9, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 255.67, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.63, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 32.81, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 198.46, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 207.09, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 123.88, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 214.98, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 5.54, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 265.51, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 535.72, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 210.67, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 6.81, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 41.46, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 180.55, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 200.14, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 139.67, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 166.19, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 5.54, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 481.89, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 357.64, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 211.82, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 7.48, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 38.56, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 190.74, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 317.14, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 78.56, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 158.62, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 6.68, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 302.76, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 270.24, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 258.31, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 6.58, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 31.46, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 254.1, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 300.47, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 70.27, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 156.67, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 268.71, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 300.13, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 259.55, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 6.37, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 38.79, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 218.15, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 330.44, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 76.87, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 185.99, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 8.63, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 271.45, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 287.03, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 289.55, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 6.44, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 34.87, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 230.33, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 349.89, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 72.25, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 172.53, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 5.25, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 262.43, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 361.98, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 297.1, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 6.52, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 37.85, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 314.09, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 475.62, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 64.24, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 163.12, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 5.89, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 275.01, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 265.46, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 298.97, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 7.11, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 36.81, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 223.17, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 337.85, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 98.06, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 213.33, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 5.27, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 332.79, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 358.57, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 275.76, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 7.1, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 40.67, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 253.96, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 274.89, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 129.28, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 218.15, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 6.33, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 283.42, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 344.53, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 205.18, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 7.22, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 40.6, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 337.21, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 371.47, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 93.74, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 197.91, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 6.15, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 305.14, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 382.38, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 232.27, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 38.21, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 207.7, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 576.82, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 60.27, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 195.98, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 6.75, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 318.34, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 330.15, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 247.09, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 6.74, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 42.44, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 278.72, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 546.78, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 65.06, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 189.87, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 9.61, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 332.32, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 323.01, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 259.92, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 7.7, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 47.96, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 311.81, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 395.3, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 64.43, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 158.81, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 353.81, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 368.95, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 307.99, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 43.39, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 303.76, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 364.59, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 134.49, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 172.07, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 6.01, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 415.22, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 368.15, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 286.68, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 6.66, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 43.22, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 285.54, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 355.48, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 115.63, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 170.07, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 6.34, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 364.6, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 375.2, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 321.49, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 9.3, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 49.93, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 315.14, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 416.65, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 111.56, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 158.26, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.88, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 380.06, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 473.77, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 313.89, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 8.58, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 46.34, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 320.31, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 369.73, + "p95": 369.73, + "p99": 369.73, + "samples": 1 + }, + "connectMs": { + "median": 305.41, + "p95": 305.41, + "p99": 305.41, + "samples": 1 + }, + "taskMs": { + "median": 37685.71, + "p95": 37685.71, + "p99": 37685.71, + "samples": 1 + }, + "loopMs": { + "median": 1863.35, + "p95": 2099.61, + "p99": 2099.61, + "samples": 20 + }, + "actionsPerSecond": { + "median": 5.31, + "p95": 5.31, + "p99": 5.31, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.31, + "p95": 5.31, + "p99": 5.31, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 343.87, + "p95": 546.78, + "p99": 546.78, + "samples": 20 + }, + "waitForSelector": { + "median": 254.03, + "p95": 368.15, + "p99": 375.2, + "samples": 60 + }, + "screenshot": { + "median": 214.16, + "p95": 313.89, + "p99": 321.49, + "samples": 40 + }, + "textContent": { + "median": 6.6, + "p95": 8.58, + "p99": 8.63, + "samples": 40 + }, + "click": { + "median": 303.95, + "p95": 481.89, + "p99": 481.89, + "samples": 20 + }, + "goBack": { + "median": 39.7, + "p95": 47.96, + "p99": 47.96, + "samples": 20 + } + } + }, + "compositeScore": 91.88, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 388.07, + "connectMs": 142.22, + "taskMs": 49862.93, + "releaseMs": 362.89, + "totalMs": 50787.32, + "aggregateActionsPerSecond": 4.01, + "sessions": [ + { + "sessionId": "09762ed0-16b7-4d14-9383-f6406bb99d24", + "createMs": 387.04, + "connectMs": 142.14, + "taskMs": 49859.25, + "actionsCompleted": 200, + "actionsPerSecond": 4.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 689.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 184.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 680.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 495.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 345.93, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 135.97, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 201.32, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 172.86, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.14, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 649.34, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 365.84, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 580.82, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.57, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 43.63, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 130.63, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 196.09, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 147.33, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 290.69, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 17.04, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 655.47, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 290.75, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 492.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 17.42, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 40.26, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 131.88, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 198.92, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 157.48, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 278.54, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 17.01, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 652.87, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 379.67, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 392.43, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 17.64, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 53.84, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 133.31, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 231.74, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 147.61, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 281.21, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 16.85, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 655.96, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 390.58, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 507.84, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 58.35, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 42.41, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 157.86, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 208.57, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 160.34, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 309.45, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 16.96, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 675.97, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 237.1, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 581.02, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 18.27, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 42.57, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 136.33, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 207.51, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 270.82, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 280.68, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 17.7, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 676.16, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 345.87, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 398.61, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 18.12, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 54.39, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 137.82, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 231.04, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 158.27, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 279.38, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 16.84, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 665.98, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 383.09, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 394.31, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 21.12, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 47.74, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 134.55, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 220.23, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 154.05, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 260.06, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 17.42, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 666.18, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 334.39, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 420.91, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 18.15, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 45.89, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 159.23, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 282.15, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 175.84, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 262.69, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 17.42, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 721.27, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 401.64, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 467.32, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 18.52, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 45.63, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 138.05, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 219.21, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 387.29, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 275.97, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 17.17, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 656.98, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 361.09, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 375.86, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 17.29, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 44.12, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 135.34, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 273.74, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 162.44, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 269.57, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 16.49, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 676.57, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 413.36, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 365.32, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 16.74, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 47.1, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 136.23, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 236.34, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 167.7, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 253.3, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 17.15, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 653.04, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 409.91, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 398.12, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 18.17, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 42.22, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 140.04, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 250.89, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 216.49, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 330.4, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 17.31, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 661.54, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 329, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 414.88, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 18.01, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 46.46, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 155.4, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 248.37, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 187.31, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 261.49, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 17.31, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 692.03, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 444.38, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 352.11, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 17.78, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 43.57, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 148.18, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 229.45, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 158.11, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 259.81, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 17.12, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 677.9, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 447.9, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 382.22, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 18.83, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 45.74, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 142.66, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 248.26, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 160.21, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 258.34, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 17.26, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 684.14, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 477.27, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 694.82, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 17.66, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 46.36, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 202.3, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 315.09, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 236.62, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 359.71, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 17.03, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 707, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 417.72, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 491.38, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 17.85, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 44.49, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 155.35, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 266.98, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 180.53, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 286.18, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 23, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 709.71, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 499.39, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 395.43, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 19.6, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 52.35, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 151.66, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 262.98, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 323.85, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 273.15, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 18.83, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 959.59, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 344.3, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 569.5, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 18.35, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 49.52, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 141.11, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 388.07, + "p95": 388.07, + "p99": 388.07, + "samples": 1 + }, + "connectMs": { + "median": 142.22, + "p95": 142.22, + "p99": 142.22, + "samples": 1 + }, + "taskMs": { + "median": 49862.93, + "p95": 49862.93, + "p99": 49862.93, + "samples": 1 + }, + "loopMs": { + "median": 2425.05, + "p95": 2865.27, + "p99": 2865.27, + "samples": 20 + }, + "actionsPerSecond": { + "median": 4.01, + "p95": 4.01, + "p99": 4.01, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.01, + "p95": 4.01, + "p99": 4.01, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 234.04, + "p95": 315.09, + "p99": 315.09, + "samples": 20 + }, + "waitForSelector": { + "median": 174.35, + "p95": 417.72, + "p99": 447.9, + "samples": 60 + }, + "screenshot": { + "median": 349.02, + "p95": 569.5, + "p99": 580.82, + "samples": 40 + }, + "textContent": { + "median": 17.42, + "p95": 19.6, + "p99": 21.12, + "samples": 40 + }, + "click": { + "median": 676.06, + "p95": 721.27, + "p99": 721.27, + "samples": 20 + }, + "goBack": { + "median": 45.68, + "p95": 53.84, + "p99": 53.84, + "samples": 20 + } + } + }, + "compositeScore": 89.52, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 338.28, + "connectMs": 720.53, + "taskMs": 169897.76, + "releaseMs": 422.4, + "totalMs": 171488.56, + "aggregateActionsPerSecond": 1.18, + "sessions": [ + { + "sessionId": "bdb7048e-77d5-4d1c-bd12-1e2d73829c42", + "createMs": 337.53, + "connectMs": 719.7, + "taskMs": 169891.23, + "actionsCompleted": 200, + "actionsPerSecond": 1.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 767.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 661.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 804.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2734.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 831.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4665.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 226.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 723.73, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 433.85, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 946.11, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 957.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 71.4, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2701.63, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1452.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1677.18, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 72.87, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 198.67, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 773.11, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 502.58, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 552.31, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1022.72, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 71.54, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2749.31, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 1088.05, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1771.06, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 75.67, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 212.12, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 764.64, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 447.19, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 586.21, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 911.93, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 73.78, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2846.68, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 901.53, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1312.64, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 73.06, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 210.54, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 736.78, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 315.63, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 709.54, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 906.01, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 72.94, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 2852.32, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 828.99, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 1289.57, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 74.71, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 210.78, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 711.03, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 506.29, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 574.34, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 883.31, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 72.03, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 2659.16, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 1153.12, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 1425.1, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 73.07, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 200.34, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 767.59, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 286.64, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 658.11, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 876.76, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 70.84, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 2687.12, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 951.06, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 1278.4, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 74.27, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 198.84, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 654.8, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 401.32, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 546.58, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 811.47, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 71.37, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 2690.34, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 928.68, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 1303.53, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 72.7, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 189.3, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 728.23, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 450.07, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 545.56, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 908.1, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 70.8, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 2653.34, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 1042.25, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 1322.1, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 74.65, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 216.65, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 705.14, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 414.27, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 541.76, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 829.97, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 70.95, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 3150.5, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 1001.68, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 1282.69, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 72.24, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 209.82, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 964.92, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 470.53, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 554.72, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 890.73, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 72.24, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 2673.12, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 1031.41, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 1296.98, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 72.5, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 208.92, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 725.44, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 472.73, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 825.71, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 928.23, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 72.62, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 2717.3, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 971.38, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 1218.24, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 73.12, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 217.09, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 733.03, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 397.92, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 546.02, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 824.76, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 71.6, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 2701.18, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 894.11, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 1201.15, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 74.37, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 215.55, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 639.22, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 428.09, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 557.22, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 775.83, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 71.76, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 2696.31, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 908.53, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 1334.2, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 73.16, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 201.05, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 711.99, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 479.49, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 555.7, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 878.78, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 72.18, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 2679.21, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 999.25, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 1761.83, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 72.94, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 214.8, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 916.72, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 558.69, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 597.89, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 1014.65, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 70.47, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 2706.01, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 1155.12, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 1629.86, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 72.97, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 206.8, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 928.01, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 665.53, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 687.2, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 1073.29, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 71.86, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 2754.65, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 1235.98, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 1541.29, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 73.3, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 212.33, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 927.3, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 498.9, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 667.46, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 1019.56, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 74.71, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 2801.87, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 1245.61, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 1590.1, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 75.94, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 231.56, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 780.91, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 536.34, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 562.5, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 892.8, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 72.07, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 2734.61, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 1165.18, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 1401.76, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 74.98, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 232.28, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 718.02, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 506.15, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 558.52, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 878.4, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 71.14, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 2758.68, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 1079.99, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 1291.99, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 72.19, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 212.15, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 673.14, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 338.28, + "p95": 338.28, + "p99": 338.28, + "samples": 1 + }, + "connectMs": { + "median": 720.53, + "p95": 720.53, + "p99": 720.53, + "samples": 1 + }, + "taskMs": { + "median": 169897.76, + "p95": 169897.76, + "p99": 169897.76, + "samples": 1 + }, + "loopMs": { + "median": 8271.9, + "p95": 9284.07, + "p99": 9284.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.18, + "p95": 1.18, + "p99": 1.18, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.18, + "p95": 1.18, + "p99": 1.18, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 471.63, + "p95": 665.53, + "p99": 665.53, + "samples": 20 + }, + "waitForSelector": { + "median": 750.71, + "p95": 1153.12, + "p99": 1165.18, + "samples": 60 + }, + "screenshot": { + "median": 1137.22, + "p95": 1677.18, + "p99": 1761.83, + "samples": 40 + }, + "textContent": { + "median": 72.56, + "p95": 74.71, + "p99": 74.98, + "samples": 40 + }, + "click": { + "median": 2711.66, + "p95": 2852.32, + "p99": 2852.32, + "samples": 20 + }, + "goBack": { + "median": 211.45, + "p95": 231.56, + "p99": 231.56, + "samples": 20 + } + } + }, + "compositeScore": 77.19, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 292.8, + "connectMs": 1090.8, + "taskMs": 28088.95, + "releaseMs": 46.97, + "totalMs": 29526.48, + "aggregateActionsPerSecond": 7.12, + "sessions": [ + { + "sessionId": "njwm01krmg7fp42gwq5e6zy9", + "createMs": 291.11, + "connectMs": 1090.31, + "taskMs": 28083.05, + "actionsCompleted": 200, + "actionsPerSecond": 7.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 283.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 223.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 138.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 371.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 46.88, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 144.47, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 53.21, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 176.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.6, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 398.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 163.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 227.74, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 209.96, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.03, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 246.15, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 97.28, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 87.17, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 199.44, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.22, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 162.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 143.06, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 236.18, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.08, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 20.11, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 42.86, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 125.87, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 53.88, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 247.55, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.96, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 212.45, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 130.46, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 245.21, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.06, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 22.66, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 42.08, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 115.17, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 86.9, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 229.33, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 4.02, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 200.15, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 130.99, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 325.39, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 24.71, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 45.53, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 100.2, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 83.78, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 168.74, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 4.21, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 400.77, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 178.89, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 282.97, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 5.76, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 39.12, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 44.56, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 141.65, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 86.77, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 236.04, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 5.13, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 184.63, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 177.7, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 290.28, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 5.11, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 26.25, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 45.39, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 111.26, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 121.65, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 204.25, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 4.87, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 253.4, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 189.3, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 299.28, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 4.94, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 23.69, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 46.99, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 123.68, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 247.85, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 157.91, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 4, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 208.36, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 167.15, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 225.2, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 5.41, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 27.87, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 43.12, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 145.9, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 92.02, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 190.85, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 3.97, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 241.82, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 185.79, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 337.15, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 4.97, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 24.74, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 77.17, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 214.03, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 108.35, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 164.75, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 337.59, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 330.85, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 277.11, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 4.76, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 33.96, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 53.09, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 174.49, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 225.47, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 165.05, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 4.21, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 241.97, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 225.23, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 438.99, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 4.68, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 24.95, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 47.37, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 173.03, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 200.11, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 199.42, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 3.85, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 213.06, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 240.01, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 332.63, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 4.39, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 27.24, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 51.93, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 176.52, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 106.35, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 204.89, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 3.65, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 451.98, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 214.82, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 297.98, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 31.06, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 51.83, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 197.47, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 116.55, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 221.3, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 3.61, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 272.55, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 263.8, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 296.2, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 4.69, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 23.86, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 48.83, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 205.22, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 135.09, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 182.81, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 3.41, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 247.84, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 242.25, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 253.04, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 4.33, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 29.56, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 59.92, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 214.42, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 116.84, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 188.74, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 4.66, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 443.59, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 246.21, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 277.07, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 4.35, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 31.06, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 59.2, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 230.72, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 142.36, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 156.52, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 3.91, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 451.7, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 282.05, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 302.52, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 35.14, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 61.97, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 266.43, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 112.75, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 164.54, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 244.09, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 271.74, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 350.12, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 4.54, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 28.28, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 61.42, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 292.11, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 106.04, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 203.25, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 12.37, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 293.11, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 360.86, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 318.86, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 4.75, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 55.84, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 107.35, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 292.8, + "p95": 292.8, + "p99": 292.8, + "samples": 1 + }, + "connectMs": { + "median": 1090.8, + "p95": 1090.8, + "p99": 1090.8, + "samples": 1 + }, + "taskMs": { + "median": 28088.95, + "p95": 28088.95, + "p99": 28088.95, + "samples": 1 + }, + "loopMs": { + "median": 1447.26, + "p95": 1671.03, + "p99": 1671.03, + "samples": 20 + }, + "actionsPerSecond": { + "median": 7.12, + "p95": 7.12, + "p99": 7.12, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.12, + "p95": 7.12, + "p99": 7.12, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 173.76, + "p95": 283.35, + "p99": 283.35, + "samples": 20 + }, + "waitForSelector": { + "median": 114.65, + "p95": 247.85, + "p99": 271.74, + "samples": 60 + }, + "screenshot": { + "median": 236.11, + "p95": 337.15, + "p99": 350.12, + "samples": 40 + }, + "textContent": { + "median": 4.63, + "p95": 6.02, + "p99": 6.06, + "samples": 40 + }, + "click": { + "median": 245.97, + "p95": 451.7, + "p99": 451.7, + "samples": 20 + }, + "goBack": { + "median": 28.07, + "p95": 39.12, + "p99": 39.12, + "samples": 20 + } + } + }, + "compositeScore": 94.39, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 597.05, + "connectMs": 1154.35, + "taskMs": 180849.44, + "releaseMs": 257.07, + "totalMs": 182858.39, + "aggregateActionsPerSecond": 0.73, + "sessions": [ + { + "sessionId": "73192dc4-1fc0-4237-9465-fea583905a75", + "createMs": 595.97, + "connectMs": 1153.86, + "taskMs": 180847.49, + "actionsCompleted": 132, + "actionsPerSecond": 0.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1133.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1451.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1437.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 140.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6890.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1863.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2212.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 477.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 339.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1336.52, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 361.37, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1119.42, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1593.83, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 219.5, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 7070.68, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1127.58, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1542.96, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 129.39, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 377.24, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1063.86, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 426.45, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 979.35, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1242.27, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 129.69, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 6439.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2786.4, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2130.95, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 186.2, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 462.48, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1530.91, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 510.11, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1062.04, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1262.67, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 116.92, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 5392.71, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1153.58, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1106.93, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 87.85, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 305.89, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 767.99, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 397.31, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 1100.94, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 1039.95, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 250.51, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 4236.6, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 1105.45, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 1389.45, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 113.58, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 287.62, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 1033.41, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 420.63, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 1203.32, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 1543.4, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 153.54, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 5218.03, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 843.7, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 1216.06, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 113.93, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 328.53, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 876.74, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 354.34, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 1053.08, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 1385.52, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 166.4, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 4708.94, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 816.07, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 1296.36, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 81.48, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 269.9, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 786.75, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 435.68, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 879.03, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 986.65, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 115.65, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 4701.84, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 801.52, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 1266.85, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 155.66, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 416.13, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 1144.68, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 362.07, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 812.43, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 831.43, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 91.07, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 5213.44, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 1073.64, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 1764.69, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 177.69, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 399.85, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 981.68, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 427.2, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 757.98, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 1100.49, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 88.35, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 8223.66, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 1781.21, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 2153.26, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 617.32, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 558.95, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 1394.01, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 610.87, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 1777.37, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 3310.14, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 179.99, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 6725.73, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 1223.01, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 1794.11, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 153.52, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 374, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 1504.93, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 387.49, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 1402.54, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 1737.74, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 818.3, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 8763.23, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 1256.89, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 1608.26, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 155.3, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 319, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 949.36, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 449.76, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 958.12, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 1229.69, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 124.48, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 4722.29, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 874.99, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 1069.05, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 96.2, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 262.69, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 758.29, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 388.79, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 847.72, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 535.39, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed\nCall log:\n - taking page screenshot\n - waiting for fonts to load...\n - fonts loaded\n" + }, + { + "index": 134, + "type": "textContent", + "durationMs": 0.52, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 135, + "type": "click", + "durationMs": 0.26, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 138, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 139, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 140, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 141, + "type": "navigate", + "durationMs": 0.17, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 0.11, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 0.11, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 144, + "type": "textContent", + "durationMs": 0.1, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 145, + "type": "click", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 148, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 149, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 150, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 151, + "type": "navigate", + "durationMs": 0.11, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 154, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 155, + "type": "click", + "durationMs": 0.4, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 158, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 159, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 160, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 161, + "type": "navigate", + "durationMs": 0.17, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 0.12, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 164, + "type": "textContent", + "durationMs": 0.1, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 165, + "type": "click", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 168, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 169, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 170, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 171, + "type": "navigate", + "durationMs": 0.09, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 174, + "type": "textContent", + "durationMs": 0.08, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 175, + "type": "click", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 178, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 179, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 180, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 181, + "type": "navigate", + "durationMs": 0.08, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 184, + "type": "textContent", + "durationMs": 0.08, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 185, + "type": "click", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 188, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 189, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 190, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 191, + "type": "navigate", + "durationMs": 0.08, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 0.07, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 0.1, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 194, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 195, + "type": "click", + "durationMs": 0.31, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 198, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 199, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 200, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 597.05, + "p95": 597.05, + "p99": 597.05, + "samples": 1 + }, + "connectMs": { + "median": 1154.35, + "p95": 1154.35, + "p99": 1154.35, + "samples": 1 + }, + "taskMs": { + "median": 180849.44, + "p95": 180849.44, + "p99": 180849.44, + "samples": 1 + }, + "loopMs": { + "median": 10936.82, + "p95": 17398.1, + "p99": 17398.1, + "samples": 20 + }, + "actionsPerSecond": { + "median": 0.73, + "p95": 0.73, + "p99": 0.73, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.73, + "p95": 0.73, + "p99": 0.73, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 423.54, + "p95": 1133.01, + "p99": 1133.01, + "samples": 14 + }, + "waitForSelector": { + "median": 1068.75, + "p95": 1777.37, + "p99": 1781.21, + "samples": 40 + }, + "screenshot": { + "median": 1387.48, + "p95": 2153.26, + "p99": 2212.16, + "samples": 26 + }, + "textContent": { + "median": 146.96, + "p95": 477.17, + "p99": 617.32, + "samples": 26 + }, + "click": { + "median": 5392.71, + "p95": 8763.23, + "p99": 8763.23, + "samples": 13 + }, + "goBack": { + "median": 339.76, + "p95": 558.95, + "p99": 558.95, + "samples": 13 + } + } + }, + "compositeScore": 0, + "successRate": 0, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 2529.91, + "connectMs": 1171.95, + "taskMs": 136765.6, + "releaseMs": 563.34, + "totalMs": 141089.23, + "aggregateActionsPerSecond": 1.46, + "sessions": [ + { + "sessionId": "94b78268-b32b-4a94-b263-38ad4c60ace0", + "createMs": 2528.71, + "connectMs": 1171.41, + "taskMs": 136762.24, + "actionsCompleted": 200, + "actionsPerSecond": 1.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 428.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 489.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 622.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1848.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 558.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 662.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 67.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 390.18, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 273.19, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 414.22, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 589.21, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 50.22, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1878.88, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 434.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 667.72, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 49.59, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 115.01, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 384.95, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 249.45, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 4628.54, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 664.92, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 49.17, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1798.09, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 516.59, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 704.95, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 50.17, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 126.9, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 380.69, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 225.07, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 408.84, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 588.33, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 48.03, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1812.67, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 432.03, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 671.05, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 50.74, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 122.83, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 386.83, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 219.3, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 393.23, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 589.13, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 51.17, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 5596.47, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 608.12, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 650.73, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 50.32, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 113.22, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 396.29, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 245.94, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 395, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 593.38, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 48.84, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 1891.61, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 499.89, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 719.2, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 53.57, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 139.21, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 399.64, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 266.4, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 416.93, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 616.82, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 49.22, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 5883.27, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 507.11, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 738.99, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 51.7, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 125.8, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 400.92, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 241.24, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 405.72, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 595.26, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 50.58, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 1825.03, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 582.63, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 698.34, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 49.73, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 115.32, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 387.24, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 301.75, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 405.78, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 616.95, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 48.62, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 1870.8, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 615.59, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 5073.51, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 50.6, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 123.94, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 472.33, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 286.77, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 419.18, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 561.65, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 48.67, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 1877.04, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 520.94, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 685.79, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 50.61, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 177.56, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 410.6, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 307.27, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 443.06, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 585.07, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 53.26, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 1972.4, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 575.69, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 4315.9, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 53, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 132.04, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 461.97, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 283.35, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 409.2, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 588.71, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 49.68, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 1931.47, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 500.75, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 672.32, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 49.51, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 116.31, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 376.11, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 244.92, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 412.59, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 567.14, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 49.37, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 1790.29, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 579.26, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 656.18, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 50.01, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 112.73, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 386.48, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 265.34, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 411.21, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 4455.99, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 48.97, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 1840.96, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 481.15, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 632.01, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 50.9, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 116.55, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 385.02, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 276.4, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 401.33, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 601.08, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 49.24, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 1872.09, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 660.1, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 663.28, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 50.65, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 148.4, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 387.77, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 286.99, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 577.11, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 698.51, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 52.48, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 6029.89, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 598.48, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 778.7, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 51.74, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 129.49, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 400.34, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 259.56, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 417.34, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 571.9, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 48.27, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 1828.17, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 554.34, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 685.46, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 50.8, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 152.47, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 382.07, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 288.76, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 553.22, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 581.04, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 48.61, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 5521.07, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 628.21, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 658.63, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 49.19, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 115.44, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 394.87, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 274.06, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 405.22, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 647.86, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 52.62, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 1870.33, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 549.16, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 808.8, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 49.99, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 120.49, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 398.42, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 282.67, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 423.6, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 570.78, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 56.97, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 1897.34, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 4820.51, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 753.31, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 49.99, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 115, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 407.86, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 2529.91, + "p95": 2529.91, + "p99": 2529.91, + "samples": 1 + }, + "connectMs": { + "median": 1171.95, + "p95": 1171.95, + "p99": 1171.95, + "samples": 1 + }, + "taskMs": { + "median": 136765.6, + "p95": 136765.6, + "p99": 136765.6, + "samples": 1 + }, + "loopMs": { + "median": 5205.9, + "p95": 9579.87, + "p99": 9579.87, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.46, + "p95": 1.46, + "p99": 1.46, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.46, + "p95": 1.46, + "p99": 1.46, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 273.63, + "p95": 307.27, + "p99": 307.27, + "samples": 20 + }, + "waitForSelector": { + "median": 417.14, + "p95": 608.12, + "p99": 628.21, + "samples": 60 + }, + "screenshot": { + "median": 657.4, + "p95": 808.8, + "p99": 4315.9, + "samples": 40 + }, + "textContent": { + "median": 50.09, + "p95": 53.26, + "p99": 53.57, + "samples": 40 + }, + "click": { + "median": 1874.56, + "p95": 5883.27, + "p99": 5883.27, + "samples": 20 + }, + "goBack": { + "median": 121.66, + "p95": 152.47, + "p99": 152.47, + "samples": 20 + } + } + }, + "compositeScore": 77.88, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 464.6, + "connectMs": 116.43, + "taskMs": 45353.82, + "releaseMs": 107.99, + "totalMs": 46053.78, + "aggregateActionsPerSecond": 4.41, + "sessions": [ + { + "sessionId": "sess_a556f14108e74f0b8e64cba2976832e7", + "createMs": 462.84, + "connectMs": 116.28, + "taskMs": 45348.99, + "actionsCompleted": 200, + "actionsPerSecond": 4.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 236.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 203.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 154.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 292.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 370.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 471.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.2, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 242.36, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 93.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 343.84, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.52, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 353.76, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 376.32, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 397.6, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.65, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 66.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 235.89, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 200.09, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 161.46, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 200.26, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 10.97, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 354.32, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 339.3, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 370.38, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 49.78, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 112.23, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 215.41, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 200.3, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 203.16, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.59, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 322.6, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 292.57, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 501.09, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 10.06, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 73.86, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 271.17, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 241.24, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 292.27, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 164.33, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 7.43, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 1115.01, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 517.17, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 279.07, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 9.66, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 366.4, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 121.65, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 212.68, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 416.69, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 256.92, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 7.36, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 464.87, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 283.56, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 346.59, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 11.91, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 73.21, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 114.11, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 234.27, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 126.04, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 256.41, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 9.83, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 359.89, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 373.49, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 549.55, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 13.52, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 52.19, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 377.34, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 216.72, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 181.66, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 196.38, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 446.24, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 415.6, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 407.47, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 11.56, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 263.43, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 69.15, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 220.23, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 240.18, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 161.79, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 6.13, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 357.6, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 338.99, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 470.74, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 12.48, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 32.63, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 118.73, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 259.42, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 216.44, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 244.99, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 21.43, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 378.93, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 394.31, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 641.16, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 10.36, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 76.37, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 125.5, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 305.11, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 191.33, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 208.91, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 6.63, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 355.79, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 324.66, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 460.63, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 15.57, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 85.87, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 119.31, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 347.96, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 252.56, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 313.93, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 7.67, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 350.77, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 401.99, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 391.05, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 9.98, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 79.8, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 114.12, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 290.71, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 213.85, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 204.59, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 11.33, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 346.95, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 389.93, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 392.67, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 12.11, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 65.12, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 118.04, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 292.36, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 212.89, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 211.61, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 14.53, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 339.41, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 453.91, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 415.2, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 12.19, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 61.19, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 121.87, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 250.7, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 291.25, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 172.05, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 13.86, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 391.92, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 508.49, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 449.94, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 14.93, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 75.81, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 293.01, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 317.67, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 230.58, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 173.77, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 6.76, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 380.9, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 476.22, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 438.87, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 11.39, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 67.54, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 184.86, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 570.4, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 95.15, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 297.59, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 13.47, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 596.71, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 592.7, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 244.99, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 8.42, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 87.74, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 127.12, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 303.61, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 206.66, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 199.58, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 9.34, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 377.28, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 369.84, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 406.36, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 9.48, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 43.11, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 123.2, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 352.91, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 192.16, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 199.52, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 7.79, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 370.08, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 688.12, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 308.96, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 12.31, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 79.42, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 115.78, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 302.27, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 225.16, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 389.44, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.8, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 918.1, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 402.3, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 392.59, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 9.12, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 83.08, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 149.72, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 464.6, + "p95": 464.6, + "p99": 464.6, + "samples": 1 + }, + "connectMs": { + "median": 116.43, + "p95": 116.43, + "p99": 116.43, + "samples": 1 + }, + "taskMs": { + "median": 45353.82, + "p95": 45353.82, + "p99": 45353.82, + "samples": 1 + }, + "loopMs": { + "median": 2201.08, + "p95": 2879.58, + "p99": 2879.58, + "samples": 20 + }, + "actionsPerSecond": { + "median": 4.41, + "p95": 4.41, + "p99": 4.41, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.41, + "p95": 4.41, + "p99": 4.41, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 255.06, + "p95": 352.91, + "p99": 352.91, + "samples": 20 + }, + "waitForSelector": { + "median": 227.87, + "p95": 453.91, + "p99": 508.49, + "samples": 60 + }, + "screenshot": { + "median": 311.45, + "p95": 471.38, + "p99": 501.09, + "samples": 40 + }, + "textContent": { + "median": 9.91, + "p95": 14.93, + "p99": 15.57, + "samples": 40 + }, + "click": { + "median": 364.99, + "p95": 918.1, + "p99": 918.1, + "samples": 20 + }, + "goBack": { + "median": 73.54, + "p95": 263.43, + "p99": 263.43, + "samples": 20 + } + } + }, + "compositeScore": 90.04, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c1/2026-08-18.json b/results/browser-concurrent/c1/2026-08-18.json new file mode 100644 index 00000000..cfbbdbd5 --- /dev/null +++ b/results/browser-concurrent/c1/2026-08-18.json @@ -0,0 +1,9407 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.732Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 1, + "rounds": 1, + "actionsPerSession": 200, + "loopsPerSession": 20, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 536.01, + "connectMs": 299.56, + "taskMs": 39134.36, + "releaseMs": 280.79, + "totalMs": 40262.51, + "aggregateActionsPerSecond": 5.11, + "sessions": [ + { + "sessionId": "43ae520f-6e06-42f7-9ba9-678bf7f7d4bd", + "createMs": 535, + "connectMs": 299.19, + "taskMs": 39130.73, + "actionsCompleted": 200, + "actionsPerSecond": 5.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1652.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 459.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 180.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 265.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.89, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 300.11, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 76.24, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 177.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 265.69, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 151.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 216.13, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.78, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 279.56, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 329.66, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 64.45, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 201.36, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.38, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 321.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 129.09, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 230.65, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 31.24, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 182.35, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 211.4, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 128.19, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 214.95, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.32, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 298.99, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 194.92, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 151.87, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.17, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 37.32, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 257.24, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 245.61, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 152.3, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 212.93, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 381.89, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 161.67, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 176.24, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 29.7, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 255.89, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 369.39, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 61.11, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 209.29, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 6.42, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 408.72, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 219.65, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 122.18, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 6.68, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 27.68, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 181.98, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 298.07, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 69.92, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 227.53, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 6.38, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 386.02, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 210.69, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 139.69, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 29.56, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 280.18, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 270.05, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 215.78, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 219.14, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 7.55, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 356.4, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 179.9, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 185.24, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 34.28, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 285.39, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 215.07, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 151.1, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 208.14, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 6.06, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 383.22, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 235.12, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 151.93, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 6.63, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 38.21, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 268.12, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 288.44, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 145.92, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 233.87, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 391.66, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 304, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 180.04, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 36.24, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 256.45, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 399.13, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 61.23, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 186.44, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 7.23, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 444.87, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 175.09, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 268.84, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 5.66, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 34.37, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 295.54, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 473.24, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 70.82, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 176.93, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 6.1, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 455.23, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 206.36, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 211.94, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 6.01, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 35.59, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 275.22, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 338.84, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 147.81, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 218.31, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 7.05, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 486.45, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 266.8, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 176.48, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 6.86, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 39.08, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 344.53, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 378.25, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 111.58, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 230.49, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 5.87, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 536.01, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 245.1, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 165.64, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 6.11, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 38.11, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 252.16, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 455.85, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 79.52, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 199.34, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 7.19, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 518.83, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 226.13, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 183.07, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 6.59, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 39.81, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 301.62, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 517.68, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 68.58, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 203.01, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 7.92, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 544.11, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 305.04, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 156.69, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 6.66, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 40.73, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 288.38, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 428.24, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 117.44, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 218.51, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 6.96, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 480.97, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 236.42, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 228.43, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 6.81, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 40.51, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 384.8, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 316.51, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 198.49, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 228.71, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 6.26, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 669.95, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 223.43, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 241.16, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 7.2, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 42.46, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 334.75, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 522.15, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 62.89, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 201.45, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 6.53, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 679.94, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 326.69, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 197.9, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 6.32, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 44.22, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 392.68, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 532.23, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 99.22, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 218.65, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.21, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 597.1, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 320.65, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 264.29, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 47.86, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 373.45, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 536.01, + "p95": 536.01, + "p99": 536.01, + "samples": 1 + }, + "connectMs": { + "median": 299.56, + "p95": 299.56, + "p99": 299.56, + "samples": 1 + }, + "taskMs": { + "median": 39134.36, + "p95": 39134.36, + "p99": 39134.36, + "samples": 1 + }, + "loopMs": { + "median": 1897.92, + "p95": 2466.86, + "p99": 2466.86, + "samples": 20 + }, + "actionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 354.11, + "p95": 532.23, + "p99": 532.23, + "samples": 20 + }, + "waitForSelector": { + "median": 210.79, + "p95": 326.69, + "p99": 344.53, + "samples": 60 + }, + "screenshot": { + "median": 208.71, + "p95": 264.29, + "p99": 265.46, + "samples": 40 + }, + "textContent": { + "median": 6.35, + "p95": 7.23, + "p99": 7.55, + "samples": 40 + }, + "click": { + "median": 450.05, + "p95": 669.95, + "p99": 669.95, + "samples": 20 + }, + "goBack": { + "median": 37.02, + "p95": 44.22, + "p99": 44.22, + "samples": 20 + } + } + }, + "compositeScore": 91.24, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 224.99, + "connectMs": 188.94, + "taskMs": 55294.53, + "releaseMs": 121.9, + "totalMs": 55879.99, + "aggregateActionsPerSecond": 3.62, + "sessions": [ + { + "sessionId": "b3a101e6-7390-4684-b108-cba93004e35d", + "createMs": 223.49, + "connectMs": 188.8, + "taskMs": 55286.17, + "actionsCompleted": 200, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1478.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 263.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 895.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 440.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.4, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 257.42, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 226.19, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 279.17, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 24.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 806.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 294.76, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 248.01, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 23.94, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 59.73, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.95, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 246.05, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 203.26, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 275.5, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 24.12, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 801.83, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 258.53, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 239.22, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 23.86, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 65.41, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 181.3, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 248.98, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 223.99, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 268.38, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 25.52, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 881.2, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 310.57, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 269.99, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 23.55, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 57.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 183.08, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 250.04, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 211.22, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 289.84, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 24.62, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 804.45, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 294.66, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 245.97, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 24.34, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 61.91, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 181.96, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 271.49, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 213.73, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 306.71, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 27.3, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 871.37, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 333.36, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 240.44, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 25.17, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 59.62, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 181.8, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 277.68, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 227.59, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 309.73, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 24.11, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 832.28, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 322.22, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 240.07, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 25.07, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 58.45, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 181.33, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 272.65, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 213.81, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 316.7, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 25.19, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 898.41, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 302.7, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 276.73, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 25.74, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 56.29, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 195.48, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 281.41, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 224.74, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 313.62, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 25.37, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 917.13, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 300.42, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 246.03, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 25.4, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 62.85, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 187.8, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 297.85, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 236.96, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 302.41, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 25.24, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 882.08, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 354.75, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 237.62, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 25.39, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 58.29, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 189.79, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 268.35, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 237.25, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 304.7, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 25.67, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 942.22, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 336.52, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 287.89, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 26.39, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 63.44, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 229.53, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 287.6, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 258.33, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 346.8, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 45.76, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 901.39, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 354, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 281.24, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 25.99, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 62.77, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 209.89, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 303.75, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 245.23, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 336.19, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 27.31, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 924.26, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 359.42, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 274.2, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 24.98, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 61.56, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 203.22, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 322.73, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 247.29, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 339.37, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 26.04, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 996.7, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 348.98, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 288.13, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 25.39, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 63.71, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 201.84, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 323.29, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 252.17, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 307.2, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 25.09, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 997.7, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 437.94, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 307.36, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 27.73, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 64.37, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 206.37, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 339.96, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 260.17, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 313.89, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 26.9, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 966.13, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 374.58, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 267.68, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 28.15, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 66.12, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 239.68, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 325.93, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 254.47, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 316.67, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 25.6, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 1075.46, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 381.14, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 271.9, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 25.83, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 67.47, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 204.11, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 323.76, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 269.71, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 315.59, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 25.88, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 945.13, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 378.53, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 259.02, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 25.05, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 58.01, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 198.97, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 318.48, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 255.28, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 382.59, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 27.32, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 1051.99, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 418.74, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 266.94, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 27.34, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 62.76, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 210.56, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 368.68, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 268.73, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 312.51, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 26.35, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 1198.33, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 387.52, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 270.31, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 25.48, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 68.05, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 210.54, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 224.99, + "p95": 224.99, + "p99": 224.99, + "samples": 1 + }, + "connectMs": { + "median": 188.94, + "p95": 188.94, + "p99": 188.94, + "samples": 1 + }, + "taskMs": { + "median": 55294.53, + "p95": 55294.53, + "p99": 55294.53, + "samples": 1 + }, + "loopMs": { + "median": 2741.04, + "p95": 3136.49, + "p99": 3136.49, + "samples": 20 + }, + "actionsPerSecond": { + "median": 3.62, + "p95": 3.62, + "p99": 3.62, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.62, + "p95": 3.62, + "p99": 3.62, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 292.73, + "p95": 368.68, + "p99": 368.68, + "samples": 20 + }, + "waitForSelector": { + "median": 242.45, + "p95": 378.53, + "p99": 387.52, + "samples": 60 + }, + "screenshot": { + "median": 288.01, + "p95": 336.19, + "p99": 339.37, + "samples": 40 + }, + "textContent": { + "median": 25.5, + "p95": 27.34, + "p99": 27.73, + "samples": 40 + }, + "click": { + "median": 909.26, + "p95": 1075.46, + "p99": 1075.46, + "samples": 20 + }, + "goBack": { + "median": 62.34, + "p95": 67.47, + "p99": 67.47, + "samples": 20 + } + } + }, + "compositeScore": 88.88, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 445.96, + "connectMs": 358.04, + "taskMs": 50304.42, + "releaseMs": 94.73, + "totalMs": 51226.56, + "aggregateActionsPerSecond": 3.98, + "sessions": [ + { + "sessionId": "8585a624-329a-4842-97e1-25d5e6666164", + "createMs": 444.51, + "connectMs": 357.95, + "taskMs": 50299.25, + "actionsCompleted": 200, + "actionsPerSecond": 3.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 506.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 338.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 140.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 215.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 330.24, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 144.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 456.39, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.46, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 512.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 283.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 379.01, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 115.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 171.29, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 325.83, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 137.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 552.69, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.58, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 482.2, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 257.98, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 342.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 12.17, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 133.53, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 169.4, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 404.82, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 95.27, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 455.5, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.84, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 483.77, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 229.63, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 295.31, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 13.31, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 137.56, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 174.43, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 357.47, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 168.21, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 392.46, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 11.34, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 503.85, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 262.45, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 374.59, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 13.45, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 121.87, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 205.28, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 322.94, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 169.67, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 416.53, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 12.71, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 560.12, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 219.15, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 321.24, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 11.68, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 139.31, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 175.71, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 276.91, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 179.79, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 353.03, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 12.18, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 522.84, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 230.22, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 349.93, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 12.04, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 126.98, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 185.32, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 297.53, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 206.68, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 377.12, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 12.37, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 600.82, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 312.21, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 321.33, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 11.96, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 110.3, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 155.16, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 288.71, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 178.26, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 443.27, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 11.22, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 602.96, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 311.83, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 369.44, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 125.6, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 205.98, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 240.3, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 161.35, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 395.71, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 14.64, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 545.88, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 284.41, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 309.03, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 10.9, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 122.25, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 190.31, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 348.17, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 170.49, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 405.72, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 14.06, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 568.66, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 309.99, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 133.81, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 168.42, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 339.37, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 210.86, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 394.18, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 13.78, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 601.96, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 298.87, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 327.31, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 12.49, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 128.52, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 153.4, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 347.58, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 206.78, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 435.22, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 12.6, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 669.26, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 361.3, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 324.88, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 12.08, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 132.12, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 215.7, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 404.45, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 209.88, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 403.8, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 608.46, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 319.69, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 333.15, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 115.56, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 188.1, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 328.83, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 216.78, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 383.15, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 11.7, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 649.5, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 378.99, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 314.13, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 11.3, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 141.16, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 157.62, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 369.22, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 189.78, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 417.94, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 13, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 893.69, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 273.27, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 353.04, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 11.83, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 118.76, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 170.44, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 287.37, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 187.13, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 367.57, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 12.38, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 607.69, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 422.86, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 318.12, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 11.95, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 119.59, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 186.44, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 344.82, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 180.02, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 417.03, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 707.56, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 241.36, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 340.06, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 15.21, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 122.79, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 167.75, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 319.89, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 233.06, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 429.04, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 13.74, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 719.61, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 368.04, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 298.13, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 13.29, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 130.15, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 139.38, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 348.99, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 310.89, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 428.42, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 14.2, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 659.39, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 310.15, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 314.29, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 11.69, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 132.13, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 145.9, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 445.96, + "p95": 445.96, + "p99": 445.96, + "samples": 1 + }, + "connectMs": { + "median": 358.04, + "p95": 358.04, + "p99": 358.04, + "samples": 1 + }, + "taskMs": { + "median": 50304.42, + "p95": 50304.42, + "p99": 50304.42, + "samples": 1 + }, + "loopMs": { + "median": 2500.94, + "p95": 2810.98, + "p99": 2810.98, + "samples": 20 + }, + "actionsPerSecond": { + "median": 3.98, + "p95": 3.98, + "p99": 3.98, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.98, + "p95": 3.98, + "p99": 3.98, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 334.81, + "p95": 404.82, + "p99": 404.82, + "samples": 20 + }, + "waitForSelector": { + "median": 205.63, + "p95": 319.69, + "p99": 361.3, + "samples": 60 + }, + "screenshot": { + "median": 372.01, + "p95": 455.5, + "p99": 456.39, + "samples": 40 + }, + "textContent": { + "median": 12.37, + "p95": 14.06, + "p99": 14.2, + "samples": 40 + }, + "click": { + "median": 601.39, + "p95": 719.61, + "p99": 719.61, + "samples": 20 + }, + "goBack": { + "median": 127.75, + "p95": 140.72, + "p99": 140.72, + "samples": 20 + } + } + }, + "compositeScore": 89.39, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 389.79, + "connectMs": 67.46, + "taskMs": 26570.44, + "releaseMs": 58.5, + "totalMs": 27099.38, + "aggregateActionsPerSecond": 7.53, + "sessions": [ + { + "sessionId": "flor204mbdojjycyv65o1bcp", + "createMs": 388.2, + "connectMs": 67.2, + "taskMs": 26564.85, + "actionsCompleted": 200, + "actionsPerSecond": 7.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 254.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 205.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 159.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 33.18, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.68, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.5, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 216.51, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 199.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 72.71, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 223.92, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.67, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.2, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 38.19, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 122.64, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 53.86, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 165.93, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.23, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 217.22, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 101.18, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 228.93, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 28.12, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 37.17, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 133.74, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 104.08, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 179.01, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.82, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 238.13, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 82.32, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 150.96, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.75, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 30.96, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 35.87, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 157.02, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 50.69, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 211.08, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 284.54, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 99.86, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 164.33, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 3.47, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 27.07, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 41.64, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 149.35, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 51.64, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 261.86, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 4.89, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 270.71, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 120.66, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 222.07, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 3.44, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 30.64, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 37.23, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 152.84, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 58.22, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 223.57, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 3.76, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 358.37, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 136.99, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 233.46, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 36.61, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 43.01, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 144.64, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 48.45, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 212.85, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 3.51, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 222.12, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 129.14, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 237.59, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 3.26, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 31.77, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 40.73, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 160.8, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 111.89, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 180.62, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 3.64, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 273.5, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 119.8, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 156.77, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 3.49, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 28.29, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 40.99, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 134.94, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 106.49, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 169.92, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 3.61, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 269.65, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 118.85, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 167.06, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 3.47, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 27.68, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 37.33, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 200.1, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 110.53, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 207.64, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 3.62, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 520.77, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 118.75, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 245.12, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 3.55, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 30.64, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 255.39, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 197.56, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 103, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 180.42, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 3.36, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 319.14, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 159.7, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 232.07, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 4.95, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 29.5, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 47.15, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 180.13, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 113.82, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 170.73, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 4.32, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 326.52, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 120.41, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 163.46, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 3.6, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 35.23, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 52.39, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 215.93, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 116.62, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 190.05, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 351.67, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 135.34, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 279.51, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 4.25, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 47.71, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 45.53, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 204.22, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 137.75, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 146.14, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 3.8, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 464.18, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 248.84, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 241.73, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 3.62, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 39.7, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 51.13, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 212.24, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 126.09, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 170.05, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 4.21, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 355.41, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 174.09, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 256.46, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 3.07, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 29.26, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 42.37, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 233.69, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 127.98, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 172.1, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 3.78, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 394.51, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 158.13, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 280.58, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 3.76, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 41.87, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 66.03, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 320.8, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 106.6, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 249.61, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 4.48, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 617.08, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 212.63, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 295.09, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 7.25, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 50.06, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 59.44, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 276.81, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 147.98, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 190.56, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 4.35, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 505.89, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 209.94, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 307.97, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 3.6, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 46.15, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 271.91, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 272.39, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 159.14, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 219.45, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 4.85, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 609.07, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 228.64, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 271.99, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 7.85, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 43.26, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 61.02, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 389.79, + "p95": 389.79, + "p99": 389.79, + "samples": 1 + }, + "connectMs": { + "median": 67.46, + "p95": 67.46, + "p99": 67.46, + "samples": 1 + }, + "taskMs": { + "median": 26570.44, + "p95": 26570.44, + "p99": 26570.44, + "samples": 1 + }, + "loopMs": { + "median": 1261.94, + "p95": 1923.03, + "p99": 1923.03, + "samples": 20 + }, + "actionsPerSecond": { + "median": 7.53, + "p95": 7.53, + "p99": 7.53, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.53, + "p95": 7.53, + "p99": 7.53, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 188.85, + "p95": 276.81, + "p99": 276.81, + "samples": 20 + }, + "waitForSelector": { + "median": 105.28, + "p95": 209.94, + "p99": 228.64, + "samples": 60 + }, + "screenshot": { + "median": 214.68, + "p95": 279.51, + "p99": 280.58, + "samples": 40 + }, + "textContent": { + "median": 3.76, + "p95": 4.95, + "p99": 5.61, + "samples": 40 + }, + "click": { + "median": 322.83, + "p95": 609.07, + "p99": 609.07, + "samples": 20 + }, + "goBack": { + "median": 31.36, + "p95": 47.71, + "p99": 47.71, + "samples": 20 + } + } + }, + "compositeScore": 94.7, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 1214.2, + "connectMs": 2143.71, + "taskMs": 180709.6, + "releaseMs": 1146.88, + "totalMs": 185215.48, + "aggregateActionsPerSecond": 0.24, + "sessions": [ + { + "sessionId": "cb3c15cc-05a2-40a0-8ac1-dc6bfd7f0017", + "createMs": 1212.8, + "connectMs": 2143.27, + "taskMs": 180706.35, + "actionsCompleted": 44, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1578.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4475.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6188.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 396.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14979.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2829.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3834.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 431.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 908.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2728.24, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 703.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4038.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4349.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 419.53, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 16598.77, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2860.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4405.64, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 387.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1447.24, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3093.78, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1188.62, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3488.13, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 4313.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 1023.39, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 17373.8, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 3207.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3988.83, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 429.82, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1238.42, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2851.58, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 742.29, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 2844.11, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 6774.25, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 491.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 19796.33, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 4759.93, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 3997.44, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 477.95, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1014.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 3634.02, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 1405.25, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 3783.48, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 6417.65, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 423.49, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 8372.15, + "success": false, + "error": "elementHandle.getAttribute: Target page, context or browser has been closed\nCall log:\n - waiting for locator(':scope')\n" + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 48, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 49, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 50, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 51, + "type": "navigate", + "durationMs": 0.53, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 0.23, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 0.15, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 54, + "type": "textContent", + "durationMs": 0.11, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 55, + "type": "click", + "durationMs": 0.12, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 58, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 59, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 60, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 61, + "type": "navigate", + "durationMs": 0.1, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 64, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 65, + "type": "click", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 68, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 69, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 70, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 71, + "type": "navigate", + "durationMs": 0.16, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 74, + "type": "textContent", + "durationMs": 1.1, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 75, + "type": "click", + "durationMs": 0.14, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 78, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 79, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 80, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 81, + "type": "navigate", + "durationMs": 0.11, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 0.11, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 84, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 85, + "type": "click", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 88, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 89, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 90, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 91, + "type": "navigate", + "durationMs": 0.11, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 0.08, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 94, + "type": "textContent", + "durationMs": 0.08, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 95, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 98, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 99, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 100, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 101, + "type": "navigate", + "durationMs": 0.17, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 104, + "type": "textContent", + "durationMs": 0.18, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 105, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 108, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 109, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 110, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 111, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 114, + "type": "textContent", + "durationMs": 0.39, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 115, + "type": "click", + "durationMs": 0.78, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 118, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 119, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 120, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 121, + "type": "navigate", + "durationMs": 0.49, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 0.39, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 0.29, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 124, + "type": "textContent", + "durationMs": 0.23, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 125, + "type": "click", + "durationMs": 0.27, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 128, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 129, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 130, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 131, + "type": "navigate", + "durationMs": 0.38, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 0.17, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 134, + "type": "textContent", + "durationMs": 0.24, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 135, + "type": "click", + "durationMs": 0.2, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 138, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 139, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 140, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 141, + "type": "navigate", + "durationMs": 0.23, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 144, + "type": "textContent", + "durationMs": 0.16, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 145, + "type": "click", + "durationMs": 0.15, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 148, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 149, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 150, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 151, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 0.16, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 154, + "type": "textContent", + "durationMs": 0.16, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 155, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 158, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 159, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 160, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 161, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 0.17, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 164, + "type": "textContent", + "durationMs": 0.17, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 165, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 168, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 169, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 170, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 171, + "type": "navigate", + "durationMs": 0.24, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 0.3, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 174, + "type": "textContent", + "durationMs": 0.29, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 175, + "type": "click", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 178, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 179, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 180, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 181, + "type": "navigate", + "durationMs": 0.19, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 0.2, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 184, + "type": "textContent", + "durationMs": 0.2, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 185, + "type": "click", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 188, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 189, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 190, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 191, + "type": "navigate", + "durationMs": 0.2, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 0.2, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 0.18, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 194, + "type": "textContent", + "durationMs": 0.2, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 195, + "type": "click", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 198, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 199, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 200, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 1214.2, + "p95": 1214.2, + "p99": 1214.2, + "samples": 1 + }, + "connectMs": { + "median": 2143.71, + "p95": 2143.71, + "p99": 2143.71, + "samples": 1 + }, + "taskMs": { + "median": 180709.6, + "p95": 180709.6, + "p99": 180709.6, + "samples": 1 + }, + "loopMs": { + "median": 1.17, + "p95": 39102.65, + "p99": 39102.65, + "samples": 20 + }, + "actionsPerSecond": { + "median": 0.24, + "p95": 0.24, + "p99": 0.24, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.24, + "p95": 0.24, + "p99": 0.24, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 1188.62, + "p95": 1578.99, + "p99": 1578.99, + "samples": 5 + }, + "waitForSelector": { + "median": 3207.03, + "p95": 4759.93, + "p99": 4759.93, + "samples": 13 + }, + "screenshot": { + "median": 4349.08, + "p95": 6774.25, + "p99": 6774.25, + "samples": 9 + }, + "textContent": { + "median": 429.82, + "p95": 1023.39, + "p99": 1023.39, + "samples": 9 + }, + "click": { + "median": 16986.28, + "p95": 19796.33, + "p99": 19796.33, + "samples": 4 + }, + "goBack": { + "median": 1126.43, + "p95": 1447.24, + "p99": 1447.24, + "samples": 4 + } + } + }, + "compositeScore": 0, + "successRate": 0, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 1216.92, + "connectMs": 424.61, + "taskMs": 110127.53, + "releaseMs": 1058.02, + "totalMs": 112895.8, + "aggregateActionsPerSecond": 1.82, + "sessions": [ + { + "sessionId": "d1b38529-2490-42b2-b68a-e3c253fd37ad", + "createMs": 1215.63, + "connectMs": 424.51, + "taskMs": 110123.16, + "actionsCompleted": 200, + "actionsPerSecond": 1.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 642.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2669.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 693.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1829.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 445.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 534.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 411.34, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 221.51, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 416.35, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 637.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1665.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 418.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 547.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 52.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 130.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 417.91, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 217.42, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 436.86, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 606.4, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 52.84, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1672.5, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 436.32, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 556.59, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 52.76, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1966.84, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 491.74, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 268.26, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 440.66, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 610.92, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 55.29, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1704.88, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 445.37, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 534.37, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 55.79, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 124.31, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 421.61, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 204.87, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 411.37, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 591.89, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 54.39, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 1684.68, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 430.07, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 552.53, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 54.43, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 126.43, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 420.68, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 213.13, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 413.01, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 610.44, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 53.47, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 1838.4, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 2382.84, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 613.83, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 54.37, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 128.26, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 425.05, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 227.68, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 427.65, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 604.53, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 53.96, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 1638.43, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 448.44, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 558.05, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 54.57, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 154.68, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 425.27, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 240.69, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 436.87, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 624.67, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 53.36, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 1664.17, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 428.79, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 551.21, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 53.18, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 131.92, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 420.7, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 227.43, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 430.37, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 601.43, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 55.39, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 3631.04, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 490.2, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 558.71, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 53.87, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 125.22, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 436.52, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 232.33, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 414.07, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 598.73, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 52.39, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 1625.23, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 425.47, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 547.66, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 52.23, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 123.15, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 414.2, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 248.9, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 418.45, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 608.29, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 52.94, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 1662.83, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 431.86, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 568.24, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 52.45, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 127.48, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 415.73, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 229.2, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 422.15, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 623.16, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 53.88, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 3608.96, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 652.12, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 777.6, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 51.08, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 124.61, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 420.01, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 243.45, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 419.16, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 602.11, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 53.39, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 1659.97, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 432.66, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 565, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 52.13, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 138.34, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 404.77, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 242.6, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 418.12, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 619.97, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 51.73, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 1675.71, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 442.83, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 590.51, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 52.15, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 126.28, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 408.69, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 250.59, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 2277.97, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 681.78, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 52.4, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 1829.71, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 416.17, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 547.65, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 51.92, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 125.28, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 413.99, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 239.59, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 425.74, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 597.15, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 52.1, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 1672.02, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 469.2, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 556.55, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 51.61, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 128.26, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 401.82, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 237.94, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 427.37, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 619.49, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 52.86, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 1670.85, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 452.5, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 563.66, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 52.43, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 199.81, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 2467.68, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 323.86, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 437.07, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 624.33, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 52.79, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 2111.84, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 441.78, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 550.85, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 51.77, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 139.94, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 423.81, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 272.09, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 443.61, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 631.57, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 52.88, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 1688.17, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 471.12, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 528.91, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 51.2, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 124.36, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 402.51, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 242.66, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 426.94, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 608.06, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 51.86, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 3492.24, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 801.87, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 581.76, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 55.46, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 125.96, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 439.83, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 1216.92, + "p95": 1216.92, + "p99": 1216.92, + "samples": 1 + }, + "connectMs": { + "median": 424.61, + "p95": 424.61, + "p99": 424.61, + "samples": 1 + }, + "taskMs": { + "median": 110127.53, + "p95": 110127.53, + "p99": 110127.53, + "samples": 1 + }, + "loopMs": { + "median": 4663.95, + "p95": 6962.77, + "p99": 6962.77, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.82, + "p95": 1.82, + "p99": 1.82, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.82, + "p95": 1.82, + "p99": 1.82, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 240.14, + "p95": 323.86, + "p99": 323.86, + "samples": 20 + }, + "waitForSelector": { + "median": 427.51, + "p95": 652.12, + "p99": 2277.97, + "samples": 60 + }, + "screenshot": { + "median": 597.94, + "p95": 637.9, + "p99": 681.78, + "samples": 40 + }, + "textContent": { + "median": 52.85, + "p95": 55.39, + "p99": 55.46, + "samples": 40 + }, + "click": { + "median": 1680.19, + "p95": 3608.96, + "p99": 3608.96, + "samples": 20 + }, + "goBack": { + "median": 127.87, + "p95": 199.81, + "p99": 199.81, + "samples": 20 + } + } + }, + "compositeScore": 81.78, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 519.94, + "connectMs": 97.6, + "taskMs": 42897.8, + "releaseMs": 91.84, + "totalMs": 43619.9, + "aggregateActionsPerSecond": 4.66, + "sessions": [ + { + "sessionId": "sess_c56dc0d45b904d2fbb782c79b8ed08f5", + "createMs": 518.87, + "connectMs": 97.52, + "taskMs": 42894.99, + "actionsCompleted": 200, + "actionsPerSecond": 4.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1339.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 75.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 200.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 371.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.19, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 255.36, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 226.1, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 228.93, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 402.68, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 287.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 286.05, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 83.77, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 249.17, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 219.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 215.13, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 20.17, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 349.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 177.69, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 345, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 57.2, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 166.13, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 241.92, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 223.71, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 258.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 375.01, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 220.15, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 321.1, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.69, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 78.39, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 232.57, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 271.7, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 247.11, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 230.21, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 5.34, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 489.68, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 296.34, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 269.61, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 65.05, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 91.85, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 288.74, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 136.64, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 366.93, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 7.83, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 480.24, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 217.87, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 368.33, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 5.85, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 57.58, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 324.05, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 276, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 202.78, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 245.03, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 9.27, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 386.97, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 374.8, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 267.99, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 4.93, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 60.21, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 120.91, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 274.64, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 206.33, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 244.36, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 539.06, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 291.59, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 233.98, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 5.45, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 59.7, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 97.26, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 340.34, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 216.54, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 251, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 509.95, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 239.08, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 359.8, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 91.35, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 96.06, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 313.46, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 224.67, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 230.81, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 7.4, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 561.34, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 278.2, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 288.57, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 4.94, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 56.19, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 119.16, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 368.51, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 112.92, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 285.63, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 7.12, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 444.39, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 271.39, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 325.52, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 6.99, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 67.42, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 163.71, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 532.45, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 104.76, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 389.69, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 6.69, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 504.07, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 240.57, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 325.19, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 5.08, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 38.41, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 126.94, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 268.72, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 218.9, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 209.81, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 11.17, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 426.47, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 319.87, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 286.97, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 9.69, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 65.02, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 126.56, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 372.37, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 264.78, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 240.47, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 6.73, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 475.79, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 331.73, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 252.38, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 5.09, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 83.2, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 248.04, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 289.13, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 246.44, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 243.38, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 499.13, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 426.1, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 249.22, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 76.46, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 111.19, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 318.63, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 256.77, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 231.65, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 8.2, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 665.89, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 268.77, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 429.99, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 10.35, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 81.27, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 245.55, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 419.51, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 121.45, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 372.09, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 538.2, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 369.16, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 275.38, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 5.4, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 59.56, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 129.45, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 276.62, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 287.38, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 212.69, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 8.69, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 672.62, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 181.55, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 317.28, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 5.5, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 70.72, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 128.03, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 272.42, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 235.71, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 224.67, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 5.98, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 655.77, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 319.29, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 259.62, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 7.99, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 66.49, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 137.56, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 393.52, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 256.8, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 219.14, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.85, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 605.19, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 292.42, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 363.25, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 4.96, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 63.1, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 108.79, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 519.94, + "p95": 519.94, + "p99": 519.94, + "samples": 1 + }, + "connectMs": { + "median": 97.6, + "p95": 97.6, + "p99": 97.6, + "samples": 1 + }, + "taskMs": { + "median": 42897.8, + "p95": 42897.8, + "p99": 42897.8, + "samples": 1 + }, + "loopMs": { + "median": 2133.74, + "p95": 2517.07, + "p99": 2517.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 4.66, + "p95": 4.66, + "p99": 4.66, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.66, + "p95": 4.66, + "p99": 4.66, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 288.94, + "p95": 532.45, + "p99": 532.45, + "samples": 20 + }, + "waitForSelector": { + "median": 221.93, + "p95": 324.05, + "p99": 369.16, + "samples": 60 + }, + "screenshot": { + "median": 259.18, + "p95": 368.33, + "p99": 372.09, + "samples": 40 + }, + "textContent": { + "median": 6.26, + "p95": 10.35, + "p99": 11.17, + "samples": 40 + }, + "click": { + "median": 494.4, + "p95": 665.89, + "p99": 665.89, + "samples": 20 + }, + "goBack": { + "median": 64.06, + "p95": 83.2, + "p99": 83.2, + "samples": 20 + } + } + }, + "compositeScore": 90.55, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c1/latest.json b/results/browser-concurrent/c1/latest.json new file mode 100644 index 00000000..cfbbdbd5 --- /dev/null +++ b/results/browser-concurrent/c1/latest.json @@ -0,0 +1,9407 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.732Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 1, + "rounds": 1, + "actionsPerSession": 200, + "loopsPerSession": 20, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 536.01, + "connectMs": 299.56, + "taskMs": 39134.36, + "releaseMs": 280.79, + "totalMs": 40262.51, + "aggregateActionsPerSecond": 5.11, + "sessions": [ + { + "sessionId": "43ae520f-6e06-42f7-9ba9-678bf7f7d4bd", + "createMs": 535, + "connectMs": 299.19, + "taskMs": 39130.73, + "actionsCompleted": 200, + "actionsPerSecond": 5.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1652.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 459.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 180.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 265.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.89, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 300.11, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 76.24, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 177.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 265.69, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 151.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 216.13, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.78, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 279.56, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 329.66, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 64.45, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 201.36, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.38, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 321.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 129.09, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 230.65, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 31.24, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 182.35, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 211.4, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 128.19, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 214.95, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.32, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 298.99, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 194.92, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 151.87, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.17, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 37.32, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 257.24, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 245.61, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 152.3, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 212.93, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 381.89, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 161.67, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 176.24, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 29.7, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 255.89, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 369.39, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 61.11, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 209.29, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 6.42, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 408.72, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 219.65, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 122.18, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 6.68, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 27.68, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 181.98, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 298.07, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 69.92, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 227.53, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 6.38, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 386.02, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 210.69, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 139.69, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 29.56, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 280.18, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 270.05, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 215.78, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 219.14, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 7.55, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 356.4, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 179.9, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 185.24, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 34.28, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 285.39, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 215.07, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 151.1, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 208.14, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 6.06, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 383.22, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 235.12, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 151.93, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 6.63, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 38.21, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 268.12, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 288.44, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 145.92, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 233.87, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 391.66, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 304, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 180.04, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 36.24, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 256.45, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 399.13, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 61.23, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 186.44, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 7.23, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 444.87, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 175.09, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 268.84, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 5.66, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 34.37, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 295.54, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 473.24, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 70.82, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 176.93, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 6.1, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 455.23, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 206.36, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 211.94, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 6.01, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 35.59, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 275.22, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 338.84, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 147.81, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 218.31, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 7.05, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 486.45, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 266.8, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 176.48, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 6.86, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 39.08, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 344.53, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 378.25, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 111.58, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 230.49, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 5.87, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 536.01, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 245.1, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 165.64, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 6.11, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 38.11, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 252.16, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 455.85, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 79.52, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 199.34, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 7.19, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 518.83, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 226.13, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 183.07, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 6.59, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 39.81, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 301.62, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 517.68, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 68.58, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 203.01, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 7.92, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 544.11, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 305.04, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 156.69, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 6.66, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 40.73, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 288.38, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 428.24, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 117.44, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 218.51, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 6.96, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 480.97, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 236.42, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 228.43, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 6.81, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 40.51, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 384.8, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 316.51, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 198.49, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 228.71, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 6.26, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 669.95, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 223.43, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 241.16, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 7.2, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 42.46, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 334.75, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 522.15, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 62.89, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 201.45, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 6.53, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 679.94, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 326.69, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 197.9, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 6.32, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 44.22, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 392.68, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 532.23, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 99.22, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 218.65, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.21, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 597.1, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 320.65, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 264.29, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 47.86, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 373.45, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 536.01, + "p95": 536.01, + "p99": 536.01, + "samples": 1 + }, + "connectMs": { + "median": 299.56, + "p95": 299.56, + "p99": 299.56, + "samples": 1 + }, + "taskMs": { + "median": 39134.36, + "p95": 39134.36, + "p99": 39134.36, + "samples": 1 + }, + "loopMs": { + "median": 1897.92, + "p95": 2466.86, + "p99": 2466.86, + "samples": 20 + }, + "actionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 354.11, + "p95": 532.23, + "p99": 532.23, + "samples": 20 + }, + "waitForSelector": { + "median": 210.79, + "p95": 326.69, + "p99": 344.53, + "samples": 60 + }, + "screenshot": { + "median": 208.71, + "p95": 264.29, + "p99": 265.46, + "samples": 40 + }, + "textContent": { + "median": 6.35, + "p95": 7.23, + "p99": 7.55, + "samples": 40 + }, + "click": { + "median": 450.05, + "p95": 669.95, + "p99": 669.95, + "samples": 20 + }, + "goBack": { + "median": 37.02, + "p95": 44.22, + "p99": 44.22, + "samples": 20 + } + } + }, + "compositeScore": 91.24, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 224.99, + "connectMs": 188.94, + "taskMs": 55294.53, + "releaseMs": 121.9, + "totalMs": 55879.99, + "aggregateActionsPerSecond": 3.62, + "sessions": [ + { + "sessionId": "b3a101e6-7390-4684-b108-cba93004e35d", + "createMs": 223.49, + "connectMs": 188.8, + "taskMs": 55286.17, + "actionsCompleted": 200, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1478.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 263.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 895.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 440.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.4, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 257.42, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 226.19, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 279.17, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 24.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 806.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 294.76, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 248.01, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 23.94, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 59.73, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.95, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 246.05, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 203.26, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 275.5, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 24.12, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 801.83, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 258.53, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 239.22, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 23.86, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 65.41, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 181.3, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 248.98, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 223.99, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 268.38, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 25.52, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 881.2, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 310.57, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 269.99, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 23.55, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 57.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 183.08, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 250.04, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 211.22, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 289.84, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 24.62, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 804.45, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 294.66, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 245.97, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 24.34, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 61.91, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 181.96, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 271.49, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 213.73, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 306.71, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 27.3, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 871.37, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 333.36, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 240.44, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 25.17, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 59.62, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 181.8, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 277.68, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 227.59, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 309.73, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 24.11, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 832.28, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 322.22, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 240.07, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 25.07, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 58.45, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 181.33, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 272.65, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 213.81, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 316.7, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 25.19, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 898.41, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 302.7, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 276.73, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 25.74, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 56.29, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 195.48, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 281.41, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 224.74, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 313.62, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 25.37, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 917.13, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 300.42, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 246.03, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 25.4, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 62.85, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 187.8, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 297.85, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 236.96, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 302.41, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 25.24, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 882.08, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 354.75, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 237.62, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 25.39, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 58.29, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 189.79, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 268.35, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 237.25, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 304.7, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 25.67, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 942.22, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 336.52, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 287.89, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 26.39, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 63.44, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 229.53, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 287.6, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 258.33, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 346.8, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 45.76, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 901.39, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 354, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 281.24, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 25.99, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 62.77, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 209.89, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 303.75, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 245.23, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 336.19, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 27.31, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 924.26, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 359.42, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 274.2, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 24.98, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 61.56, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 203.22, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 322.73, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 247.29, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 339.37, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 26.04, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 996.7, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 348.98, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 288.13, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 25.39, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 63.71, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 201.84, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 323.29, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 252.17, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 307.2, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 25.09, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 997.7, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 437.94, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 307.36, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 27.73, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 64.37, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 206.37, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 339.96, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 260.17, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 313.89, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 26.9, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 966.13, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 374.58, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 267.68, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 28.15, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 66.12, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 239.68, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 325.93, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 254.47, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 316.67, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 25.6, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 1075.46, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 381.14, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 271.9, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 25.83, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 67.47, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 204.11, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 323.76, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 269.71, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 315.59, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 25.88, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 945.13, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 378.53, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 259.02, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 25.05, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 58.01, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 198.97, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 318.48, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 255.28, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 382.59, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 27.32, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 1051.99, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 418.74, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 266.94, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 27.34, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 62.76, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 210.56, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 368.68, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 268.73, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 312.51, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 26.35, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 1198.33, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 387.52, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 270.31, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 25.48, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 68.05, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 210.54, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 224.99, + "p95": 224.99, + "p99": 224.99, + "samples": 1 + }, + "connectMs": { + "median": 188.94, + "p95": 188.94, + "p99": 188.94, + "samples": 1 + }, + "taskMs": { + "median": 55294.53, + "p95": 55294.53, + "p99": 55294.53, + "samples": 1 + }, + "loopMs": { + "median": 2741.04, + "p95": 3136.49, + "p99": 3136.49, + "samples": 20 + }, + "actionsPerSecond": { + "median": 3.62, + "p95": 3.62, + "p99": 3.62, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.62, + "p95": 3.62, + "p99": 3.62, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 292.73, + "p95": 368.68, + "p99": 368.68, + "samples": 20 + }, + "waitForSelector": { + "median": 242.45, + "p95": 378.53, + "p99": 387.52, + "samples": 60 + }, + "screenshot": { + "median": 288.01, + "p95": 336.19, + "p99": 339.37, + "samples": 40 + }, + "textContent": { + "median": 25.5, + "p95": 27.34, + "p99": 27.73, + "samples": 40 + }, + "click": { + "median": 909.26, + "p95": 1075.46, + "p99": 1075.46, + "samples": 20 + }, + "goBack": { + "median": 62.34, + "p95": 67.47, + "p99": 67.47, + "samples": 20 + } + } + }, + "compositeScore": 88.88, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 445.96, + "connectMs": 358.04, + "taskMs": 50304.42, + "releaseMs": 94.73, + "totalMs": 51226.56, + "aggregateActionsPerSecond": 3.98, + "sessions": [ + { + "sessionId": "8585a624-329a-4842-97e1-25d5e6666164", + "createMs": 444.51, + "connectMs": 357.95, + "taskMs": 50299.25, + "actionsCompleted": 200, + "actionsPerSecond": 3.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 506.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 338.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 140.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 215.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 330.24, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 144.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 456.39, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.46, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 512.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 283.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 379.01, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 115.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 171.29, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 325.83, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 137.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 552.69, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.58, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 482.2, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 257.98, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 342.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 12.17, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 133.53, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 169.4, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 404.82, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 95.27, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 455.5, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.84, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 483.77, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 229.63, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 295.31, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 13.31, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 137.56, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 174.43, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 357.47, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 168.21, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 392.46, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 11.34, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 503.85, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 262.45, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 374.59, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 13.45, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 121.87, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 205.28, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 322.94, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 169.67, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 416.53, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 12.71, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 560.12, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 219.15, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 321.24, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 11.68, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 139.31, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 175.71, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 276.91, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 179.79, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 353.03, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 12.18, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 522.84, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 230.22, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 349.93, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 12.04, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 126.98, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 185.32, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 297.53, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 206.68, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 377.12, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 12.37, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 600.82, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 312.21, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 321.33, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 11.96, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 110.3, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 155.16, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 288.71, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 178.26, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 443.27, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 11.22, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 602.96, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 311.83, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 369.44, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 125.6, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 205.98, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 240.3, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 161.35, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 395.71, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 14.64, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 545.88, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 284.41, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 309.03, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 10.9, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 122.25, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 190.31, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 348.17, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 170.49, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 405.72, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 14.06, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 568.66, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 309.99, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 133.81, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 168.42, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 339.37, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 210.86, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 394.18, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 13.78, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 601.96, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 298.87, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 327.31, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 12.49, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 128.52, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 153.4, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 347.58, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 206.78, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 435.22, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 12.6, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 669.26, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 361.3, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 324.88, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 12.08, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 132.12, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 215.7, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 404.45, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 209.88, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 403.8, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 608.46, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 319.69, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 333.15, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 115.56, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 188.1, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 328.83, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 216.78, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 383.15, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 11.7, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 649.5, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 378.99, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 314.13, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 11.3, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 141.16, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 157.62, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 369.22, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 189.78, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 417.94, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 13, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 893.69, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 273.27, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 353.04, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 11.83, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 118.76, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 170.44, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 287.37, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 187.13, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 367.57, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 12.38, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 607.69, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 422.86, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 318.12, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 11.95, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 119.59, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 186.44, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 344.82, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 180.02, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 417.03, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 707.56, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 241.36, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 340.06, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 15.21, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 122.79, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 167.75, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 319.89, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 233.06, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 429.04, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 13.74, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 719.61, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 368.04, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 298.13, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 13.29, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 130.15, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 139.38, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 348.99, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 310.89, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 428.42, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 14.2, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 659.39, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 310.15, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 314.29, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 11.69, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 132.13, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 145.9, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 445.96, + "p95": 445.96, + "p99": 445.96, + "samples": 1 + }, + "connectMs": { + "median": 358.04, + "p95": 358.04, + "p99": 358.04, + "samples": 1 + }, + "taskMs": { + "median": 50304.42, + "p95": 50304.42, + "p99": 50304.42, + "samples": 1 + }, + "loopMs": { + "median": 2500.94, + "p95": 2810.98, + "p99": 2810.98, + "samples": 20 + }, + "actionsPerSecond": { + "median": 3.98, + "p95": 3.98, + "p99": 3.98, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.98, + "p95": 3.98, + "p99": 3.98, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 334.81, + "p95": 404.82, + "p99": 404.82, + "samples": 20 + }, + "waitForSelector": { + "median": 205.63, + "p95": 319.69, + "p99": 361.3, + "samples": 60 + }, + "screenshot": { + "median": 372.01, + "p95": 455.5, + "p99": 456.39, + "samples": 40 + }, + "textContent": { + "median": 12.37, + "p95": 14.06, + "p99": 14.2, + "samples": 40 + }, + "click": { + "median": 601.39, + "p95": 719.61, + "p99": 719.61, + "samples": 20 + }, + "goBack": { + "median": 127.75, + "p95": 140.72, + "p99": 140.72, + "samples": 20 + } + } + }, + "compositeScore": 89.39, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 389.79, + "connectMs": 67.46, + "taskMs": 26570.44, + "releaseMs": 58.5, + "totalMs": 27099.38, + "aggregateActionsPerSecond": 7.53, + "sessions": [ + { + "sessionId": "flor204mbdojjycyv65o1bcp", + "createMs": 388.2, + "connectMs": 67.2, + "taskMs": 26564.85, + "actionsCompleted": 200, + "actionsPerSecond": 7.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 254.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 205.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 159.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 33.18, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.68, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.5, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 216.51, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 199.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 72.71, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 223.92, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.67, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.2, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 38.19, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 122.64, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 53.86, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 165.93, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.23, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 217.22, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 101.18, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 228.93, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 28.12, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 37.17, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 133.74, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 104.08, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 179.01, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.82, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 238.13, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 82.32, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 150.96, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.75, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 30.96, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 35.87, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 157.02, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 50.69, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 211.08, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 284.54, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 99.86, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 164.33, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 3.47, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 27.07, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 41.64, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 149.35, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 51.64, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 261.86, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 4.89, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 270.71, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 120.66, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 222.07, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 3.44, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 30.64, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 37.23, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 152.84, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 58.22, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 223.57, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 3.76, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 358.37, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 136.99, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 233.46, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 36.61, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 43.01, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 144.64, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 48.45, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 212.85, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 3.51, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 222.12, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 129.14, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 237.59, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 3.26, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 31.77, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 40.73, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 160.8, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 111.89, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 180.62, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 3.64, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 273.5, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 119.8, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 156.77, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 3.49, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 28.29, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 40.99, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 134.94, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 106.49, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 169.92, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 3.61, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 269.65, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 118.85, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 167.06, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 3.47, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 27.68, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 37.33, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 200.1, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 110.53, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 207.64, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 3.62, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 520.77, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 118.75, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 245.12, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 3.55, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 30.64, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 255.39, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 197.56, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 103, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 180.42, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 3.36, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 319.14, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 159.7, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 232.07, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 4.95, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 29.5, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 47.15, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 180.13, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 113.82, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 170.73, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 4.32, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 326.52, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 120.41, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 163.46, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 3.6, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 35.23, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 52.39, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 215.93, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 116.62, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 190.05, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 351.67, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 135.34, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 279.51, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 4.25, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 47.71, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 45.53, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 204.22, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 137.75, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 146.14, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 3.8, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 464.18, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 248.84, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 241.73, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 3.62, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 39.7, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 51.13, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 212.24, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 126.09, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 170.05, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 4.21, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 355.41, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 174.09, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 256.46, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 3.07, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 29.26, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 42.37, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 233.69, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 127.98, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 172.1, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 3.78, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 394.51, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 158.13, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 280.58, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 3.76, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 41.87, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 66.03, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 320.8, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 106.6, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 249.61, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 4.48, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 617.08, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 212.63, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 295.09, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 7.25, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 50.06, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 59.44, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 276.81, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 147.98, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 190.56, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 4.35, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 505.89, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 209.94, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 307.97, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 3.6, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 46.15, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 271.91, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 272.39, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 159.14, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 219.45, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 4.85, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 609.07, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 228.64, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 271.99, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 7.85, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 43.26, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 61.02, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 389.79, + "p95": 389.79, + "p99": 389.79, + "samples": 1 + }, + "connectMs": { + "median": 67.46, + "p95": 67.46, + "p99": 67.46, + "samples": 1 + }, + "taskMs": { + "median": 26570.44, + "p95": 26570.44, + "p99": 26570.44, + "samples": 1 + }, + "loopMs": { + "median": 1261.94, + "p95": 1923.03, + "p99": 1923.03, + "samples": 20 + }, + "actionsPerSecond": { + "median": 7.53, + "p95": 7.53, + "p99": 7.53, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.53, + "p95": 7.53, + "p99": 7.53, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 188.85, + "p95": 276.81, + "p99": 276.81, + "samples": 20 + }, + "waitForSelector": { + "median": 105.28, + "p95": 209.94, + "p99": 228.64, + "samples": 60 + }, + "screenshot": { + "median": 214.68, + "p95": 279.51, + "p99": 280.58, + "samples": 40 + }, + "textContent": { + "median": 3.76, + "p95": 4.95, + "p99": 5.61, + "samples": 40 + }, + "click": { + "median": 322.83, + "p95": 609.07, + "p99": 609.07, + "samples": 20 + }, + "goBack": { + "median": 31.36, + "p95": 47.71, + "p99": 47.71, + "samples": 20 + } + } + }, + "compositeScore": 94.7, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 1214.2, + "connectMs": 2143.71, + "taskMs": 180709.6, + "releaseMs": 1146.88, + "totalMs": 185215.48, + "aggregateActionsPerSecond": 0.24, + "sessions": [ + { + "sessionId": "cb3c15cc-05a2-40a0-8ac1-dc6bfd7f0017", + "createMs": 1212.8, + "connectMs": 2143.27, + "taskMs": 180706.35, + "actionsCompleted": 44, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1578.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4475.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6188.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 396.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14979.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2829.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3834.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 431.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 908.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2728.24, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 703.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4038.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4349.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 419.53, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 16598.77, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2860.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4405.64, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 387.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1447.24, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3093.78, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1188.62, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3488.13, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 4313.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 1023.39, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 17373.8, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 3207.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3988.83, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 429.82, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1238.42, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2851.58, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 742.29, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 2844.11, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 6774.25, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 491.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 19796.33, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 4759.93, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 3997.44, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 477.95, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1014.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 3634.02, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 1405.25, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 3783.48, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 6417.65, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 423.49, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 8372.15, + "success": false, + "error": "elementHandle.getAttribute: Target page, context or browser has been closed\nCall log:\n - waiting for locator(':scope')\n" + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 48, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 49, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 50, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 51, + "type": "navigate", + "durationMs": 0.53, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 0.23, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 0.15, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 54, + "type": "textContent", + "durationMs": 0.11, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 55, + "type": "click", + "durationMs": 0.12, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 58, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 59, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 60, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 61, + "type": "navigate", + "durationMs": 0.1, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 64, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 65, + "type": "click", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 68, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 69, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 70, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 71, + "type": "navigate", + "durationMs": 0.16, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 74, + "type": "textContent", + "durationMs": 1.1, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 75, + "type": "click", + "durationMs": 0.14, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 78, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 79, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 80, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 81, + "type": "navigate", + "durationMs": 0.11, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 0.11, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 0.09, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 84, + "type": "textContent", + "durationMs": 0.09, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 85, + "type": "click", + "durationMs": 0.09, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 88, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 89, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 90, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 91, + "type": "navigate", + "durationMs": 0.11, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 0.08, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 0.08, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 94, + "type": "textContent", + "durationMs": 0.08, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 95, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 98, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 99, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 100, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 101, + "type": "navigate", + "durationMs": 0.17, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 104, + "type": "textContent", + "durationMs": 0.18, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 105, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 108, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 109, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 110, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 111, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 114, + "type": "textContent", + "durationMs": 0.39, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 115, + "type": "click", + "durationMs": 0.78, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 118, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 119, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 120, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 121, + "type": "navigate", + "durationMs": 0.49, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 0.39, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 0.29, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 124, + "type": "textContent", + "durationMs": 0.23, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 125, + "type": "click", + "durationMs": 0.27, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 128, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 129, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 130, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 131, + "type": "navigate", + "durationMs": 0.38, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 0.17, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 134, + "type": "textContent", + "durationMs": 0.24, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 135, + "type": "click", + "durationMs": 0.2, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 138, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 139, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 140, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 141, + "type": "navigate", + "durationMs": 0.23, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 144, + "type": "textContent", + "durationMs": 0.16, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 145, + "type": "click", + "durationMs": 0.15, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 148, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 149, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 150, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 151, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 0.16, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 0.16, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 154, + "type": "textContent", + "durationMs": 0.16, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 155, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 158, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 159, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 160, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 161, + "type": "navigate", + "durationMs": 0.18, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 0.17, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 164, + "type": "textContent", + "durationMs": 0.17, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 165, + "type": "click", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 168, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 169, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 170, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 171, + "type": "navigate", + "durationMs": 0.24, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 0.3, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 174, + "type": "textContent", + "durationMs": 0.29, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 175, + "type": "click", + "durationMs": 0.18, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 178, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 179, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 180, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 181, + "type": "navigate", + "durationMs": 0.19, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 0.17, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 0.2, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 184, + "type": "textContent", + "durationMs": 0.2, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 185, + "type": "click", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 188, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 189, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 190, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 191, + "type": "navigate", + "durationMs": 0.2, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 0.2, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 0.18, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 194, + "type": "textContent", + "durationMs": 0.2, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 195, + "type": "click", + "durationMs": 0.19, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 198, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 199, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 200, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 1214.2, + "p95": 1214.2, + "p99": 1214.2, + "samples": 1 + }, + "connectMs": { + "median": 2143.71, + "p95": 2143.71, + "p99": 2143.71, + "samples": 1 + }, + "taskMs": { + "median": 180709.6, + "p95": 180709.6, + "p99": 180709.6, + "samples": 1 + }, + "loopMs": { + "median": 1.17, + "p95": 39102.65, + "p99": 39102.65, + "samples": 20 + }, + "actionsPerSecond": { + "median": 0.24, + "p95": 0.24, + "p99": 0.24, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.24, + "p95": 0.24, + "p99": 0.24, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 1188.62, + "p95": 1578.99, + "p99": 1578.99, + "samples": 5 + }, + "waitForSelector": { + "median": 3207.03, + "p95": 4759.93, + "p99": 4759.93, + "samples": 13 + }, + "screenshot": { + "median": 4349.08, + "p95": 6774.25, + "p99": 6774.25, + "samples": 9 + }, + "textContent": { + "median": 429.82, + "p95": 1023.39, + "p99": 1023.39, + "samples": 9 + }, + "click": { + "median": 16986.28, + "p95": 19796.33, + "p99": 19796.33, + "samples": 4 + }, + "goBack": { + "median": 1126.43, + "p95": 1447.24, + "p99": 1447.24, + "samples": 4 + } + } + }, + "compositeScore": 0, + "successRate": 0, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 1216.92, + "connectMs": 424.61, + "taskMs": 110127.53, + "releaseMs": 1058.02, + "totalMs": 112895.8, + "aggregateActionsPerSecond": 1.82, + "sessions": [ + { + "sessionId": "d1b38529-2490-42b2-b68a-e3c253fd37ad", + "createMs": 1215.63, + "connectMs": 424.51, + "taskMs": 110123.16, + "actionsCompleted": 200, + "actionsPerSecond": 1.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 642.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2669.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 693.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1829.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 445.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 534.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 411.34, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 221.51, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 416.35, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 637.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1665.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 418.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 547.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 52.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 130.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 417.91, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 217.42, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 436.86, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 606.4, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 52.84, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1672.5, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 436.32, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 556.59, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 52.76, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1966.84, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 491.74, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 268.26, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 440.66, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 610.92, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 55.29, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1704.88, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 445.37, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 534.37, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 55.79, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 124.31, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 421.61, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 204.87, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 411.37, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 591.89, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 54.39, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 1684.68, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 430.07, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 552.53, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 54.43, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 126.43, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 420.68, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 213.13, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 413.01, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 610.44, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 53.47, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 1838.4, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 2382.84, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 613.83, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 54.37, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 128.26, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 425.05, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 227.68, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 427.65, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 604.53, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 53.96, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 1638.43, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 448.44, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 558.05, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 54.57, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 154.68, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 425.27, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 240.69, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 436.87, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 624.67, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 53.36, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 1664.17, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 428.79, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 551.21, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 53.18, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 131.92, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 420.7, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 227.43, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 430.37, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 601.43, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 55.39, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 3631.04, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 490.2, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 558.71, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 53.87, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 125.22, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 436.52, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 232.33, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 414.07, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 598.73, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 52.39, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 1625.23, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 425.47, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 547.66, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 52.23, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 123.15, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 414.2, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 248.9, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 418.45, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 608.29, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 52.94, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 1662.83, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 431.86, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 568.24, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 52.45, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 127.48, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 415.73, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 229.2, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 422.15, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 623.16, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 53.88, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 3608.96, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 652.12, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 777.6, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 51.08, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 124.61, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 420.01, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 243.45, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 419.16, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 602.11, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 53.39, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 1659.97, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 432.66, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 565, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 52.13, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 138.34, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 404.77, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 242.6, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 418.12, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 619.97, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 51.73, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 1675.71, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 442.83, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 590.51, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 52.15, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 126.28, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 408.69, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 250.59, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 2277.97, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 681.78, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 52.4, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 1829.71, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 416.17, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 547.65, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 51.92, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 125.28, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 413.99, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 239.59, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 425.74, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 597.15, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 52.1, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 1672.02, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 469.2, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 556.55, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 51.61, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 128.26, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 401.82, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 237.94, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 427.37, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 619.49, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 52.86, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 1670.85, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 452.5, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 563.66, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 52.43, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 199.81, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 2467.68, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 323.86, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 437.07, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 624.33, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 52.79, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 2111.84, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 441.78, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 550.85, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 51.77, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 139.94, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 423.81, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 272.09, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 443.61, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 631.57, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 52.88, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 1688.17, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 471.12, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 528.91, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 51.2, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 124.36, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 402.51, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 242.66, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 426.94, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 608.06, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 51.86, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 3492.24, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 801.87, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 581.76, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 55.46, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 125.96, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 439.83, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 1216.92, + "p95": 1216.92, + "p99": 1216.92, + "samples": 1 + }, + "connectMs": { + "median": 424.61, + "p95": 424.61, + "p99": 424.61, + "samples": 1 + }, + "taskMs": { + "median": 110127.53, + "p95": 110127.53, + "p99": 110127.53, + "samples": 1 + }, + "loopMs": { + "median": 4663.95, + "p95": 6962.77, + "p99": 6962.77, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.82, + "p95": 1.82, + "p99": 1.82, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.82, + "p95": 1.82, + "p99": 1.82, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 240.14, + "p95": 323.86, + "p99": 323.86, + "samples": 20 + }, + "waitForSelector": { + "median": 427.51, + "p95": 652.12, + "p99": 2277.97, + "samples": 60 + }, + "screenshot": { + "median": 597.94, + "p95": 637.9, + "p99": 681.78, + "samples": 40 + }, + "textContent": { + "median": 52.85, + "p95": 55.39, + "p99": 55.46, + "samples": 40 + }, + "click": { + "median": 1680.19, + "p95": 3608.96, + "p99": 3608.96, + "samples": 20 + }, + "goBack": { + "median": 127.87, + "p95": 199.81, + "p99": 199.81, + "samples": 20 + } + } + }, + "compositeScore": 81.78, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 1, + "rounds": [ + { + "sessionsAttempted": 1, + "sessionsAlive": 1, + "createMs": 519.94, + "connectMs": 97.6, + "taskMs": 42897.8, + "releaseMs": 91.84, + "totalMs": 43619.9, + "aggregateActionsPerSecond": 4.66, + "sessions": [ + { + "sessionId": "sess_c56dc0d45b904d2fbb782c79b8ed08f5", + "createMs": 518.87, + "connectMs": 97.52, + "taskMs": 42894.99, + "actionsCompleted": 200, + "actionsPerSecond": 4.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1339.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 75.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 200.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 371.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.19, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 255.36, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 226.1, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 228.93, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 402.68, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 287.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 286.05, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 83.77, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 249.17, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 219.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 215.13, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 20.17, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 349.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 177.69, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 345, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 57.2, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 166.13, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 241.92, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 223.71, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 258.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 375.01, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 220.15, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 321.1, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.69, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 78.39, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 232.57, + "success": true + }, + { + "index": 41, + "type": "navigate", + "durationMs": 271.7, + "success": true + }, + { + "index": 42, + "type": "waitForSelector", + "durationMs": 247.11, + "success": true + }, + { + "index": 43, + "type": "screenshot", + "durationMs": 230.21, + "success": true + }, + { + "index": 44, + "type": "textContent", + "durationMs": 5.34, + "success": true + }, + { + "index": 45, + "type": "click", + "durationMs": 489.68, + "success": true + }, + { + "index": 46, + "type": "waitForSelector", + "durationMs": 296.34, + "success": true + }, + { + "index": 47, + "type": "screenshot", + "durationMs": 269.61, + "success": true + }, + { + "index": 48, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 49, + "type": "goBack", + "durationMs": 65.05, + "success": true + }, + { + "index": 50, + "type": "waitForSelector", + "durationMs": 91.85, + "success": true + }, + { + "index": 51, + "type": "navigate", + "durationMs": 288.74, + "success": true + }, + { + "index": 52, + "type": "waitForSelector", + "durationMs": 136.64, + "success": true + }, + { + "index": 53, + "type": "screenshot", + "durationMs": 366.93, + "success": true + }, + { + "index": 54, + "type": "textContent", + "durationMs": 7.83, + "success": true + }, + { + "index": 55, + "type": "click", + "durationMs": 480.24, + "success": true + }, + { + "index": 56, + "type": "waitForSelector", + "durationMs": 217.87, + "success": true + }, + { + "index": 57, + "type": "screenshot", + "durationMs": 368.33, + "success": true + }, + { + "index": 58, + "type": "textContent", + "durationMs": 5.85, + "success": true + }, + { + "index": 59, + "type": "goBack", + "durationMs": 57.58, + "success": true + }, + { + "index": 60, + "type": "waitForSelector", + "durationMs": 324.05, + "success": true + }, + { + "index": 61, + "type": "navigate", + "durationMs": 276, + "success": true + }, + { + "index": 62, + "type": "waitForSelector", + "durationMs": 202.78, + "success": true + }, + { + "index": 63, + "type": "screenshot", + "durationMs": 245.03, + "success": true + }, + { + "index": 64, + "type": "textContent", + "durationMs": 9.27, + "success": true + }, + { + "index": 65, + "type": "click", + "durationMs": 386.97, + "success": true + }, + { + "index": 66, + "type": "waitForSelector", + "durationMs": 374.8, + "success": true + }, + { + "index": 67, + "type": "screenshot", + "durationMs": 267.99, + "success": true + }, + { + "index": 68, + "type": "textContent", + "durationMs": 4.93, + "success": true + }, + { + "index": 69, + "type": "goBack", + "durationMs": 60.21, + "success": true + }, + { + "index": 70, + "type": "waitForSelector", + "durationMs": 120.91, + "success": true + }, + { + "index": 71, + "type": "navigate", + "durationMs": 274.64, + "success": true + }, + { + "index": 72, + "type": "waitForSelector", + "durationMs": 206.33, + "success": true + }, + { + "index": 73, + "type": "screenshot", + "durationMs": 244.36, + "success": true + }, + { + "index": 74, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 75, + "type": "click", + "durationMs": 539.06, + "success": true + }, + { + "index": 76, + "type": "waitForSelector", + "durationMs": 291.59, + "success": true + }, + { + "index": 77, + "type": "screenshot", + "durationMs": 233.98, + "success": true + }, + { + "index": 78, + "type": "textContent", + "durationMs": 5.45, + "success": true + }, + { + "index": 79, + "type": "goBack", + "durationMs": 59.7, + "success": true + }, + { + "index": 80, + "type": "waitForSelector", + "durationMs": 97.26, + "success": true + }, + { + "index": 81, + "type": "navigate", + "durationMs": 340.34, + "success": true + }, + { + "index": 82, + "type": "waitForSelector", + "durationMs": 216.54, + "success": true + }, + { + "index": 83, + "type": "screenshot", + "durationMs": 251, + "success": true + }, + { + "index": 84, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 85, + "type": "click", + "durationMs": 509.95, + "success": true + }, + { + "index": 86, + "type": "waitForSelector", + "durationMs": 239.08, + "success": true + }, + { + "index": 87, + "type": "screenshot", + "durationMs": 359.8, + "success": true + }, + { + "index": 88, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 89, + "type": "goBack", + "durationMs": 91.35, + "success": true + }, + { + "index": 90, + "type": "waitForSelector", + "durationMs": 96.06, + "success": true + }, + { + "index": 91, + "type": "navigate", + "durationMs": 313.46, + "success": true + }, + { + "index": 92, + "type": "waitForSelector", + "durationMs": 224.67, + "success": true + }, + { + "index": 93, + "type": "screenshot", + "durationMs": 230.81, + "success": true + }, + { + "index": 94, + "type": "textContent", + "durationMs": 7.4, + "success": true + }, + { + "index": 95, + "type": "click", + "durationMs": 561.34, + "success": true + }, + { + "index": 96, + "type": "waitForSelector", + "durationMs": 278.2, + "success": true + }, + { + "index": 97, + "type": "screenshot", + "durationMs": 288.57, + "success": true + }, + { + "index": 98, + "type": "textContent", + "durationMs": 4.94, + "success": true + }, + { + "index": 99, + "type": "goBack", + "durationMs": 56.19, + "success": true + }, + { + "index": 100, + "type": "waitForSelector", + "durationMs": 119.16, + "success": true + }, + { + "index": 101, + "type": "navigate", + "durationMs": 368.51, + "success": true + }, + { + "index": 102, + "type": "waitForSelector", + "durationMs": 112.92, + "success": true + }, + { + "index": 103, + "type": "screenshot", + "durationMs": 285.63, + "success": true + }, + { + "index": 104, + "type": "textContent", + "durationMs": 7.12, + "success": true + }, + { + "index": 105, + "type": "click", + "durationMs": 444.39, + "success": true + }, + { + "index": 106, + "type": "waitForSelector", + "durationMs": 271.39, + "success": true + }, + { + "index": 107, + "type": "screenshot", + "durationMs": 325.52, + "success": true + }, + { + "index": 108, + "type": "textContent", + "durationMs": 6.99, + "success": true + }, + { + "index": 109, + "type": "goBack", + "durationMs": 67.42, + "success": true + }, + { + "index": 110, + "type": "waitForSelector", + "durationMs": 163.71, + "success": true + }, + { + "index": 111, + "type": "navigate", + "durationMs": 532.45, + "success": true + }, + { + "index": 112, + "type": "waitForSelector", + "durationMs": 104.76, + "success": true + }, + { + "index": 113, + "type": "screenshot", + "durationMs": 389.69, + "success": true + }, + { + "index": 114, + "type": "textContent", + "durationMs": 6.69, + "success": true + }, + { + "index": 115, + "type": "click", + "durationMs": 504.07, + "success": true + }, + { + "index": 116, + "type": "waitForSelector", + "durationMs": 240.57, + "success": true + }, + { + "index": 117, + "type": "screenshot", + "durationMs": 325.19, + "success": true + }, + { + "index": 118, + "type": "textContent", + "durationMs": 5.08, + "success": true + }, + { + "index": 119, + "type": "goBack", + "durationMs": 38.41, + "success": true + }, + { + "index": 120, + "type": "waitForSelector", + "durationMs": 126.94, + "success": true + }, + { + "index": 121, + "type": "navigate", + "durationMs": 268.72, + "success": true + }, + { + "index": 122, + "type": "waitForSelector", + "durationMs": 218.9, + "success": true + }, + { + "index": 123, + "type": "screenshot", + "durationMs": 209.81, + "success": true + }, + { + "index": 124, + "type": "textContent", + "durationMs": 11.17, + "success": true + }, + { + "index": 125, + "type": "click", + "durationMs": 426.47, + "success": true + }, + { + "index": 126, + "type": "waitForSelector", + "durationMs": 319.87, + "success": true + }, + { + "index": 127, + "type": "screenshot", + "durationMs": 286.97, + "success": true + }, + { + "index": 128, + "type": "textContent", + "durationMs": 9.69, + "success": true + }, + { + "index": 129, + "type": "goBack", + "durationMs": 65.02, + "success": true + }, + { + "index": 130, + "type": "waitForSelector", + "durationMs": 126.56, + "success": true + }, + { + "index": 131, + "type": "navigate", + "durationMs": 372.37, + "success": true + }, + { + "index": 132, + "type": "waitForSelector", + "durationMs": 264.78, + "success": true + }, + { + "index": 133, + "type": "screenshot", + "durationMs": 240.47, + "success": true + }, + { + "index": 134, + "type": "textContent", + "durationMs": 6.73, + "success": true + }, + { + "index": 135, + "type": "click", + "durationMs": 475.79, + "success": true + }, + { + "index": 136, + "type": "waitForSelector", + "durationMs": 331.73, + "success": true + }, + { + "index": 137, + "type": "screenshot", + "durationMs": 252.38, + "success": true + }, + { + "index": 138, + "type": "textContent", + "durationMs": 5.09, + "success": true + }, + { + "index": 139, + "type": "goBack", + "durationMs": 83.2, + "success": true + }, + { + "index": 140, + "type": "waitForSelector", + "durationMs": 248.04, + "success": true + }, + { + "index": 141, + "type": "navigate", + "durationMs": 289.13, + "success": true + }, + { + "index": 142, + "type": "waitForSelector", + "durationMs": 246.44, + "success": true + }, + { + "index": 143, + "type": "screenshot", + "durationMs": 243.38, + "success": true + }, + { + "index": 144, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 145, + "type": "click", + "durationMs": 499.13, + "success": true + }, + { + "index": 146, + "type": "waitForSelector", + "durationMs": 426.1, + "success": true + }, + { + "index": 147, + "type": "screenshot", + "durationMs": 249.22, + "success": true + }, + { + "index": 148, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 149, + "type": "goBack", + "durationMs": 76.46, + "success": true + }, + { + "index": 150, + "type": "waitForSelector", + "durationMs": 111.19, + "success": true + }, + { + "index": 151, + "type": "navigate", + "durationMs": 318.63, + "success": true + }, + { + "index": 152, + "type": "waitForSelector", + "durationMs": 256.77, + "success": true + }, + { + "index": 153, + "type": "screenshot", + "durationMs": 231.65, + "success": true + }, + { + "index": 154, + "type": "textContent", + "durationMs": 8.2, + "success": true + }, + { + "index": 155, + "type": "click", + "durationMs": 665.89, + "success": true + }, + { + "index": 156, + "type": "waitForSelector", + "durationMs": 268.77, + "success": true + }, + { + "index": 157, + "type": "screenshot", + "durationMs": 429.99, + "success": true + }, + { + "index": 158, + "type": "textContent", + "durationMs": 10.35, + "success": true + }, + { + "index": 159, + "type": "goBack", + "durationMs": 81.27, + "success": true + }, + { + "index": 160, + "type": "waitForSelector", + "durationMs": 245.55, + "success": true + }, + { + "index": 161, + "type": "navigate", + "durationMs": 419.51, + "success": true + }, + { + "index": 162, + "type": "waitForSelector", + "durationMs": 121.45, + "success": true + }, + { + "index": 163, + "type": "screenshot", + "durationMs": 372.09, + "success": true + }, + { + "index": 164, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 165, + "type": "click", + "durationMs": 538.2, + "success": true + }, + { + "index": 166, + "type": "waitForSelector", + "durationMs": 369.16, + "success": true + }, + { + "index": 167, + "type": "screenshot", + "durationMs": 275.38, + "success": true + }, + { + "index": 168, + "type": "textContent", + "durationMs": 5.4, + "success": true + }, + { + "index": 169, + "type": "goBack", + "durationMs": 59.56, + "success": true + }, + { + "index": 170, + "type": "waitForSelector", + "durationMs": 129.45, + "success": true + }, + { + "index": 171, + "type": "navigate", + "durationMs": 276.62, + "success": true + }, + { + "index": 172, + "type": "waitForSelector", + "durationMs": 287.38, + "success": true + }, + { + "index": 173, + "type": "screenshot", + "durationMs": 212.69, + "success": true + }, + { + "index": 174, + "type": "textContent", + "durationMs": 8.69, + "success": true + }, + { + "index": 175, + "type": "click", + "durationMs": 672.62, + "success": true + }, + { + "index": 176, + "type": "waitForSelector", + "durationMs": 181.55, + "success": true + }, + { + "index": 177, + "type": "screenshot", + "durationMs": 317.28, + "success": true + }, + { + "index": 178, + "type": "textContent", + "durationMs": 5.5, + "success": true + }, + { + "index": 179, + "type": "goBack", + "durationMs": 70.72, + "success": true + }, + { + "index": 180, + "type": "waitForSelector", + "durationMs": 128.03, + "success": true + }, + { + "index": 181, + "type": "navigate", + "durationMs": 272.42, + "success": true + }, + { + "index": 182, + "type": "waitForSelector", + "durationMs": 235.71, + "success": true + }, + { + "index": 183, + "type": "screenshot", + "durationMs": 224.67, + "success": true + }, + { + "index": 184, + "type": "textContent", + "durationMs": 5.98, + "success": true + }, + { + "index": 185, + "type": "click", + "durationMs": 655.77, + "success": true + }, + { + "index": 186, + "type": "waitForSelector", + "durationMs": 319.29, + "success": true + }, + { + "index": 187, + "type": "screenshot", + "durationMs": 259.62, + "success": true + }, + { + "index": 188, + "type": "textContent", + "durationMs": 7.99, + "success": true + }, + { + "index": 189, + "type": "goBack", + "durationMs": 66.49, + "success": true + }, + { + "index": 190, + "type": "waitForSelector", + "durationMs": 137.56, + "success": true + }, + { + "index": 191, + "type": "navigate", + "durationMs": 393.52, + "success": true + }, + { + "index": 192, + "type": "waitForSelector", + "durationMs": 256.8, + "success": true + }, + { + "index": 193, + "type": "screenshot", + "durationMs": 219.14, + "success": true + }, + { + "index": 194, + "type": "textContent", + "durationMs": 7.85, + "success": true + }, + { + "index": 195, + "type": "click", + "durationMs": 605.19, + "success": true + }, + { + "index": 196, + "type": "waitForSelector", + "durationMs": 292.42, + "success": true + }, + { + "index": 197, + "type": "screenshot", + "durationMs": 363.25, + "success": true + }, + { + "index": 198, + "type": "textContent", + "durationMs": 4.96, + "success": true + }, + { + "index": 199, + "type": "goBack", + "durationMs": 63.1, + "success": true + }, + { + "index": 200, + "type": "waitForSelector", + "durationMs": 108.79, + "success": true + } + ] + } + ], + "maxLiveSessions": 1, + "maxConcurrentActions": 1, + "loopsPerSession": 20 + } + ], + "summary": { + "sessionsAlive": { + "median": 1, + "p95": 1, + "p99": 1, + "samples": 1 + }, + "createMs": { + "median": 519.94, + "p95": 519.94, + "p99": 519.94, + "samples": 1 + }, + "connectMs": { + "median": 97.6, + "p95": 97.6, + "p99": 97.6, + "samples": 1 + }, + "taskMs": { + "median": 42897.8, + "p95": 42897.8, + "p99": 42897.8, + "samples": 1 + }, + "loopMs": { + "median": 2133.74, + "p95": 2517.07, + "p99": 2517.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 4.66, + "p95": 4.66, + "p99": 4.66, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.66, + "p95": 4.66, + "p99": 4.66, + "samples": 1 + }, + "perActionType": { + "navigate": { + "median": 288.94, + "p95": 532.45, + "p99": 532.45, + "samples": 20 + }, + "waitForSelector": { + "median": 221.93, + "p95": 324.05, + "p99": 369.16, + "samples": 60 + }, + "screenshot": { + "median": 259.18, + "p95": 368.33, + "p99": 372.09, + "samples": 40 + }, + "textContent": { + "median": 6.26, + "p95": 10.35, + "p99": 11.17, + "samples": 40 + }, + "click": { + "median": 494.4, + "p95": 665.89, + "p99": 665.89, + "samples": 20 + }, + "goBack": { + "median": 64.06, + "p95": 83.2, + "p99": 83.2, + "samples": 20 + } + } + }, + "compositeScore": 90.55, + "successRate": 1, + "sessionCeiling": 1, + "concurrencyAchieved": 1, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c10/2026-08-14.json b/results/browser-concurrent/c10/2026-08-14.json new file mode 100644 index 00000000..9f619c82 --- /dev/null +++ b/results/browser-concurrent/c10/2026-08-14.json @@ -0,0 +1,8925 @@ +{ + "version": "1.0", + "timestamp": "2026-08-14T18:36:03.251Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 10, + "rounds": 1, + "actionsPerSession": 20, + "loopsPerSession": 2, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 343.84, + "connectMs": 346.2, + "taskMs": 9366.3, + "releaseMs": 702.15, + "totalMs": 10768.22, + "aggregateActionsPerSecond": 21.35, + "sessions": [ + { + "sessionId": "560f0f57-cf20-4b26-b99c-aeba86e83e87", + "createMs": 288.9, + "connectMs": 345.87, + "taskMs": 4052.81, + "actionsCompleted": 20, + "actionsPerSecond": 4.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 795.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 250.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 276.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 503.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 278.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.79, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 229.6, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 67.25, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 184.66, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 243.49, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 294.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 344.62, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.94, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.67, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 217.21, + "success": true + } + ] + }, + { + "sessionId": "3cb3c0ac-da2c-4d79-9989-10948fa91db9", + "createMs": 339.9, + "connectMs": 298.5, + "taskMs": 5233.92, + "actionsCompleted": 20, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1031.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 114.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 264.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 691.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 267.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 277.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 366.35, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 90.96, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 233.79, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.49, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 731.41, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 260.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 193.86, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 312.92, + "success": true + } + ] + }, + { + "sessionId": "a07495ac-ca81-44c3-b4fa-f43c71942591", + "createMs": 334.94, + "connectMs": 290.68, + "taskMs": 6437.76, + "actionsCompleted": 20, + "actionsPerSecond": 3.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 3256.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 80.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 253.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 195.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 568.66, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 284.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 183.24, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 127.08, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 202.63, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 219.91, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 291.86, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 271.5, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.25, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 33.21, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 228.35, + "success": true + } + ] + }, + { + "sessionId": "f5e7a784-ffd0-4f34-9900-1920f3567d49", + "createMs": 337.13, + "connectMs": 299.18, + "taskMs": 3709.59, + "actionsCompleted": 20, + "actionsPerSecond": 5.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 617.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 81.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 205.72, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 203.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 478.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 300.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.28, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 180.17, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 112.64, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 182.1, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 206.9, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 401.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 285.42, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.14, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 168.35, + "success": true + } + ] + }, + { + "sessionId": "3e562860-337e-4a8e-a3e6-d8f5fadef886", + "createMs": 338.55, + "connectMs": 291.88, + "taskMs": 3966.51, + "actionsCompleted": 20, + "actionsPerSecond": 5.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 731.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 412.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 202.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.89, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 198.49, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 149.38, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 197.07, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.33, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 393.76, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 157.79, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 276.1, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 43.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 262.72, + "success": true + } + ] + }, + { + "sessionId": "6d77b130-3541-49c7-8f4a-64dfd27a1eaa", + "createMs": 338.85, + "connectMs": 300.16, + "taskMs": 9364.92, + "actionsCompleted": 20, + "actionsPerSecond": 2.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2392.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 288.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 763.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 845.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 882.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 338.31, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 301.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 139.9, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 246.04, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 892.14, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1227.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 448.21, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 48.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 305, + "success": true + } + ] + }, + { + "sessionId": "fffb840e-23fb-44c3-a201-d914c74de599", + "createMs": 337.02, + "connectMs": 287.01, + "taskMs": 5833.42, + "actionsCompleted": 20, + "actionsPerSecond": 3.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 763.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 111.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 202.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2058.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 324.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 260.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 196.3, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 138.83, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 221.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.58, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 338.26, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 242.52, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 279.58, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.55, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 44.69, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 238.16, + "success": true + } + ] + }, + { + "sessionId": "1825aa6e-21b8-4583-8e63-772e952613a7", + "createMs": 342.44, + "connectMs": 332.66, + "taskMs": 3837.03, + "actionsCompleted": 20, + "actionsPerSecond": 5.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 680.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.48, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 215.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 233.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 322.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 467.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 160.6, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 137.91, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 207.19, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 237.3, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 374.26, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 257.34, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.25, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.88, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 201.05, + "success": true + } + ] + }, + { + "sessionId": "7a89e5f0-c953-449c-aefa-004103a2c441", + "createMs": 340.13, + "connectMs": 301.94, + "taskMs": 5729.76, + "actionsCompleted": 20, + "actionsPerSecond": 3.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 673.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1877.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 318.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 645.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 147.26, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 120.97, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 231.5, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.13, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 260.66, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 281.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 399.95, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.66, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.59, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 168.03, + "success": true + } + ] + }, + { + "sessionId": "ebb52868-aae4-4bd3-a654-86992e8568eb", + "createMs": 340.61, + "connectMs": 303.64, + "taskMs": 3433.82, + "actionsCompleted": 20, + "actionsPerSecond": 5.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 582, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 94.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 193.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 372.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 216.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 380.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.89, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 212.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 55.88, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 201.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 174.17, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 156.48, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 365.04, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.14, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 166.33, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 343.84, + "p95": 343.84, + "p99": 343.84, + "samples": 1 + }, + "connectMs": { + "median": 346.2, + "p95": 346.2, + "p99": 346.2, + "samples": 1 + }, + "taskMs": { + "median": 9366.3, + "p95": 9366.3, + "p99": 9366.3, + "samples": 1 + }, + "loopMs": { + "median": 2164.84, + "p95": 4868.62, + "p99": 4868.62, + "samples": 20 + }, + "actionsPerSecond": { + "median": 21.35, + "p95": 21.35, + "p99": 21.35, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.38, + "p95": 5.82, + "p99": 5.82, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 474.18, + "p95": 2392.81, + "p99": 2392.81, + "samples": 20 + }, + "waitForSelector": { + "median": 187.48, + "p95": 401.87, + "p99": 503.32, + "samples": 60 + }, + "screenshot": { + "median": 261.07, + "p95": 448.21, + "p99": 467.78, + "samples": 40 + }, + "textContent": { + "median": 5.8, + "p95": 7.66, + "p99": 7.8, + "samples": 40 + }, + "click": { + "median": 307.28, + "p95": 1877.2, + "p99": 1877.2, + "samples": 20 + }, + "goBack": { + "median": 38.24, + "p95": 62.27, + "p99": 62.27, + "samples": 20 + } + } + }, + "compositeScore": 88.86, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 278.36, + "connectMs": 205.2, + "taskMs": 8800.62, + "releaseMs": 91.43, + "totalMs": 9407.65, + "aggregateActionsPerSecond": 22.73, + "sessions": [ + { + "sessionId": "ebad8e2b-f9d1-4ab0-acc5-577dca694a5a", + "createMs": 264.72, + "connectMs": 159.52, + "taskMs": 4780.81, + "actionsCompleted": 20, + "actionsPerSecond": 4.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 462.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 252, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 883.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 431.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 126.44, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 205.46, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 163.86, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 203.29, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.72, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 632.41, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 263.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 331.14, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.98, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 55.12, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 145.4, + "success": true + } + ] + }, + { + "sessionId": "187ec6fa-2dfb-4eb4-bc6a-5da6d5324690", + "createMs": 228.16, + "connectMs": 127.05, + "taskMs": 5774.93, + "actionsCompleted": 20, + "actionsPerSecond": 3.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 857.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 252.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 308.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 831.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 298.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 569.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 133.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 304.01, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 200.11, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 343.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 843.49, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 245.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 308.84, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.23, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 39.38, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 134.62, + "success": true + } + ] + }, + { + "sessionId": "6b960273-2d2f-4b86-9d37-2314bf06918f", + "createMs": 249.43, + "connectMs": 125.39, + "taskMs": 5389.8, + "actionsCompleted": 20, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 631.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 245.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 60.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1238.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 585.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 269.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 223.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 141.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 297.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 463.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 399.07, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 273.2, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.78, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 119.64, + "success": true + } + ] + }, + { + "sessionId": "3a8387e6-7bc1-4527-8e25-565ae24fc3dd", + "createMs": 277.48, + "connectMs": 144.78, + "taskMs": 4782.76, + "actionsCompleted": 20, + "actionsPerSecond": 4.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 585.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 76.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.74, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 192.12, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 150.82, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 231.3, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.68, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 470.27, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 442.35, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 299.8, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.59, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 68.34, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 148.06, + "success": true + } + ] + }, + { + "sessionId": "27bc268d-4b70-4b36-b00b-0b6a1d3f8bc4", + "createMs": 227.73, + "connectMs": 136.49, + "taskMs": 5029.76, + "actionsCompleted": 20, + "actionsPerSecond": 3.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 469.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 273.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 289.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 722.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 376.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.71, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 225.57, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 169.66, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 287.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.92, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 715.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 308.73, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 414.48, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.86, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 39.3, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 128.84, + "success": true + } + ] + }, + { + "sessionId": "fcd92742-71bf-4957-b3d1-78a6c8fedd47", + "createMs": 228.39, + "connectMs": 204.75, + "taskMs": 8799.16, + "actionsCompleted": 20, + "actionsPerSecond": 2.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 665.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 206.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 411.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1147.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1507.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 587.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.78, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 313.46, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 193.91, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 326.09, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.82, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1028.2, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1238.24, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 643.07, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 25.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.98, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 157.69, + "success": true + } + ] + }, + { + "sessionId": "cec0eab0-f649-43be-8b44-50e8baf619c7", + "createMs": 256.75, + "connectMs": 149.12, + "taskMs": 5947.37, + "actionsCompleted": 20, + "actionsPerSecond": 3.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 838.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 176.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 234.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1495.27, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 435.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 130.78, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 259, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 159.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 285.77, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.6, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 708.01, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 305.16, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 292.62, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 44.89, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 163.22, + "success": true + } + ] + }, + { + "sessionId": "4894b3a7-d2d1-4ef5-9f7a-2871d801e998", + "createMs": 265.96, + "connectMs": 173.55, + "taskMs": 5170.67, + "actionsCompleted": 20, + "actionsPerSecond": 3.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 788.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 261.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 619.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 486.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 300.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 153.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 234.96, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 180.02, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 252.13, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 567.85, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 433.48, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 300.92, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 18.66, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 45.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 143.62, + "success": true + } + ] + }, + { + "sessionId": "22d9bd36-409c-4738-98c6-3baaaf9a8ea9", + "createMs": 214.42, + "connectMs": 164.9, + "taskMs": 5172.21, + "actionsCompleted": 20, + "actionsPerSecond": 3.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 571.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 190.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 626.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 527.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 298.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.04, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 215.73, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 291.39, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 448.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 18.11, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 618.19, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 375.23, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 294.42, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 44.77, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 147.33, + "success": true + } + ] + }, + { + "sessionId": "16fb262a-dee5-4a7f-b5f9-4ea1c49f8636", + "createMs": 272.96, + "connectMs": 159.28, + "taskMs": 6958.85, + "actionsCompleted": 20, + "actionsPerSecond": 2.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2571.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 240.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1328.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 328.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 315.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 135.35, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 196.62, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 145.28, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.79, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 459.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 243.16, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 304.55, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 47.29, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 126.24, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 278.36, + "p95": 278.36, + "p99": 278.36, + "samples": 1 + }, + "connectMs": { + "median": 205.2, + "p95": 205.2, + "p99": 205.2, + "samples": 1 + }, + "taskMs": { + "median": 8800.62, + "p95": 8800.62, + "p99": 8800.62, + "samples": 1 + }, + "loopMs": { + "median": 2702.54, + "p95": 4805.37, + "p99": 4805.37, + "samples": 20 + }, + "actionsPerSecond": { + "median": 22.73, + "p95": 22.73, + "p99": 22.73, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.79, + "p95": 4.18, + "p99": 4.18, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 388.15, + "p95": 857.8, + "p99": 857.8, + "samples": 20 + }, + "waitForSelector": { + "median": 192.36, + "p95": 486.3, + "p99": 585.02, + "samples": 60 + }, + "screenshot": { + "median": 294.03, + "p95": 448.75, + "p99": 569.56, + "samples": 40 + }, + "textContent": { + "median": 16.72, + "p95": 21.43, + "p99": 22.39, + "samples": 40 + }, + "click": { + "median": 711.63, + "p95": 1328.08, + "p99": 1328.08, + "samples": 20 + }, + "goBack": { + "median": 45.79, + "p95": 76.23, + "p99": 76.23, + "samples": 20 + } + } + }, + "compositeScore": 87.91, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 2488.15, + "connectMs": 677.43, + "taskMs": 36888.95, + "releaseMs": 204.21, + "totalMs": 40460.2, + "aggregateActionsPerSecond": 5.42, + "sessions": [ + { + "sessionId": "dfe1bbaf-8f14-403c-8c30-224647773f1d", + "createMs": 530.57, + "connectMs": 657.02, + "taskMs": 22191.14, + "actionsCompleted": 20, + "actionsPerSecond": 0.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 635.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 917.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2817.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1755.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1457.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 219.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1030.2, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 242.42, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1052.5, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1248.68, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 84.97, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3121.3, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2571.08, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2695.45, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 72.5, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 199.14, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1244.97, + "success": true + } + ] + }, + { + "sessionId": "422f12cd-841f-416e-b3ba-18924196ae83", + "createMs": 488.99, + "connectMs": 623.2, + "taskMs": 22178.49, + "actionsCompleted": 20, + "actionsPerSecond": 0.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1292.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 662.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 955.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2591.32, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 599.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 779, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 416.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 911.7, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 480.34, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1599.05, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 2277.57, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 144.78, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2637.93, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1816.66, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2087.86, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 73.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 461.69, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2241.08, + "success": true + } + ] + }, + { + "sessionId": "213cc8a0-f824-43d6-81e1-c313092c66ab", + "createMs": 302.72, + "connectMs": 621.86, + "taskMs": 14765.09, + "actionsCompleted": 20, + "actionsPerSecond": 1.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 793.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 670.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 844.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1884.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 888.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1166.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 211.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 612.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 380.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 625.68, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 887.34, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 142.02, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2043.08, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1206.44, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1152.13, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 76.59, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 208.87, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 820.78, + "success": true + } + ] + }, + { + "sessionId": "0a08b005-ad1a-4acf-a85b-1f475b474004", + "createMs": 459.56, + "connectMs": 676.3, + "taskMs": 29946.85, + "actionsCompleted": 20, + "actionsPerSecond": 0.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1640.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 680.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3584.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 76.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2219.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3078.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2149.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 202.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1208.1, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 347.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1185.84, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3991.34, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 75.58, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2507.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 3163.55, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2279.16, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 81.83, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 231.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1165.76, + "success": true + } + ] + }, + { + "sessionId": "31e397c5-89e6-439a-bb5c-c2624fab17a3", + "createMs": 396.93, + "connectMs": 553.49, + "taskMs": 18245.45, + "actionsCompleted": 20, + "actionsPerSecond": 1.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 953.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 664.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 830, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2378.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1234.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 973.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 509.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 795.06, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 309.03, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 679.68, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1115.74, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 73.92, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2362.83, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1098.99, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2021.98, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 71.05, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 227.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1799.21, + "success": true + } + ] + }, + { + "sessionId": "bcc0fb6b-bf3c-4958-9584-6373b09cc6e2", + "createMs": 2481.85, + "connectMs": 621.37, + "taskMs": 36885.78, + "actionsCompleted": 20, + "actionsPerSecond": 0.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1023.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 709.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 903.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3043.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2130.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 6956.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 87.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 305.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1834.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 352.34, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1814.44, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 2597.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 78.04, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 4046.32, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 7362.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1720.3, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 90.06, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 298.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1457.93, + "success": true + } + ] + }, + { + "sessionId": "01461d5a-eba9-496d-9dc7-16c18212b2ce", + "createMs": 372.15, + "connectMs": 623.65, + "taskMs": 19439.64, + "actionsCompleted": 20, + "actionsPerSecond": 1.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1029.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 689.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 790.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2729.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1015.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1193.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 242.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 919.31, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 765.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 632.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1127.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 75.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2439.67, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1726.95, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1902.44, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 75.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 521.89, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1411.85, + "success": true + } + ] + }, + { + "sessionId": "974d63cf-6a1c-4741-b72b-ae4f0c969d77", + "createMs": 428.28, + "connectMs": 621.2, + "taskMs": 19790.95, + "actionsCompleted": 20, + "actionsPerSecond": 1.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 954.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 651.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1005.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 105.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2361.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 926.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1274.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 199.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 715.51, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 520.44, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 558.85, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1047.83, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 73.48, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2356.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1254.38, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4123.48, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 74.31, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 197.68, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1314.79, + "success": true + } + ] + }, + { + "sessionId": "21a0646b-84b7-4133-ad69-63693faf88db", + "createMs": 409.01, + "connectMs": 653.2, + "taskMs": 16088.12, + "actionsCompleted": 20, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 783.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 642.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 970.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2864.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 941.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 814.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 197.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 554.61, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 251.23, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 598.13, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 755.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 76.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2588.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1107.69, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1623.43, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 71.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 238.18, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 863.5, + "success": true + } + ] + }, + { + "sessionId": "27a9489b-a53b-4b63-acdb-f477e889600f", + "createMs": 490.87, + "connectMs": 623.28, + "taskMs": 16424.88, + "actionsCompleted": 20, + "actionsPerSecond": 1.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 737.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 640.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 696.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1970.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 635.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 900.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 339.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 208.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 711.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 284.91, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 856.06, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1097.54, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 71.28, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1814.3, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1107.85, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2180.58, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 71.47, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 206.28, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1821.12, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 2488.15, + "p95": 2488.15, + "p99": 2488.15, + "samples": 1 + }, + "connectMs": { + "median": 677.43, + "p95": 677.43, + "p99": 677.43, + "samples": 1 + }, + "taskMs": { + "median": 36888.95, + "p95": 36888.95, + "p99": 36888.95, + "samples": 1 + }, + "loopMs": { + "median": 9584.76, + "p95": 17067.72, + "p99": 17067.72, + "samples": 20 + }, + "actionsPerSecond": { + "median": 5.42, + "p95": 5.42, + "p99": 5.42, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.02, + "p95": 1.35, + "p99": 1.35, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 708.5, + "p95": 1292.94, + "p99": 1292.94, + "samples": 20 + }, + "waitForSelector": { + "median": 978.45, + "p95": 2130.71, + "p99": 2571.08, + "samples": 60 + }, + "screenshot": { + "median": 1159.27, + "p95": 3584.96, + "p99": 3991.34, + "samples": 40 + }, + "textContent": { + "median": 74.89, + "p95": 105.08, + "p99": 142.02, + "samples": 40 + }, + "click": { + "median": 2473.63, + "p95": 3121.3, + "p99": 3121.3, + "samples": 20 + }, + "goBack": { + "median": 223.06, + "p95": 509.4, + "p99": 509.4, + "samples": 20 + } + } + }, + "compositeScore": 68.59, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 495.82, + "connectMs": 176.99, + "taskMs": 10426.51, + "releaseMs": 64.7, + "totalMs": 11175.98, + "aggregateActionsPerSecond": 19.18, + "sessions": [ + { + "sessionId": "lvpc8b1293p74z4dcxfx45aq", + "createMs": 189.17, + "connectMs": 63.55, + "taskMs": 2429.18, + "actionsCompleted": 20, + "actionsPerSecond": 8.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 371.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 53.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 169.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 155.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 258.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 36.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 119.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 78.73, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.7, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.45, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 217.62, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 201.55, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 287.76, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.09, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 36.43, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 40.07, + "success": true + } + ] + }, + { + "sessionId": "ganjnu3pexpnha1t0sfv6w0e", + "createMs": 260.7, + "connectMs": 94.33, + "taskMs": 5633.33, + "actionsCompleted": 20, + "actionsPerSecond": 3.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 459.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 205.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 303.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2445.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 137.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 327.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 85.1, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 158.97, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 120.88, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 221.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 10.31, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 541.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 96.59, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 299.41, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.51, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 56.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 77.04, + "success": true + } + ] + }, + { + "sessionId": "exeicrvkcys0ugzgk4o5w8w5", + "createMs": 225.24, + "connectMs": 84.21, + "taskMs": 4824.79, + "actionsCompleted": 20, + "actionsPerSecond": 4.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1763.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 57.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 876.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 344.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 318.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 27.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 114.22, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 115.82, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 42.27, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 179.36, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 161.36, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 212.49, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 273.42, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.39, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 41.64, + "success": true + } + ] + }, + { + "sessionId": "u3gc4ofy21y66gncn410exiy", + "createMs": 210.06, + "connectMs": 128.16, + "taskMs": 3031.45, + "actionsCompleted": 20, + "actionsPerSecond": 6.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 387.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 46.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 193.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 166.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 384.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 229.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 21.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 63.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 131.71, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 80.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 217, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 122.89, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 352.22, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 485.58, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.66, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 39.19, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 75.66, + "success": true + } + ] + }, + { + "sessionId": "ar1rrmhascbhni6p3a7ucidu", + "createMs": 217.75, + "connectMs": 108.45, + "taskMs": 4335.23, + "actionsCompleted": 20, + "actionsPerSecond": 4.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1676.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 180.6, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 219.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 271.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 232.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 350.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 99.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 178.62, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 73.03, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.13, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.57, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 318.01, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 98.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 200.55, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3.88, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.38, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 48.61, + "success": true + } + ] + }, + { + "sessionId": "xm9jcg8ip07s93m8kynijl6m", + "createMs": 188.01, + "connectMs": 113.35, + "taskMs": 8743.61, + "actionsCompleted": 20, + "actionsPerSecond": 2.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 4525.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 59.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 399.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 694.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 483.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 122.12, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 186.71, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 62.58, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 194.21, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.74, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 438.73, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 545.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 550.7, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 33.13, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 119.36, + "success": true + } + ] + }, + { + "sessionId": "msorni3l7az5loqg8ryrteo7", + "createMs": 220.39, + "connectMs": 115.05, + "taskMs": 10425.06, + "actionsCompleted": 20, + "actionsPerSecond": 1.92, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 4987.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3340.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 248.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 78.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 136.07, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 100.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 155.68, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.28, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 280.06, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 150.86, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 221.45, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3.78, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.73, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 53.66, + "success": true + } + ] + }, + { + "sessionId": "txp69l8wany45boy3oirwhub", + "createMs": 194.53, + "connectMs": 146.74, + "taskMs": 2665.05, + "actionsCompleted": 20, + "actionsPerSecond": 7.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 306.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 149.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 159.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 285.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 281.01, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 35.57, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 121.76, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 90.9, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 195.81, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.69, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 169.41, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 203, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 320.2, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.3, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 23.92, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 63.67, + "success": true + } + ] + }, + { + "sessionId": "zlpsr4xbrn5ifysgitzbnm24", + "createMs": 203.8, + "connectMs": 140.48, + "taskMs": 6219.68, + "actionsCompleted": 20, + "actionsPerSecond": 3.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2291.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1903.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 218.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 309.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 23.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 51.85, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 95.87, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 54.6, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 218.56, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.05, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 204.71, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 144.19, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 240.49, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3.9, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 24.88, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 40.81, + "success": true + } + ] + }, + { + "sessionId": "yzhps43nq8l6ofe4s2j4qzts", + "createMs": 494.24, + "connectMs": 176.46, + "taskMs": 5654.55, + "actionsCompleted": 20, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 248.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 92.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 188.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3834.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 147.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 27.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 31.69, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 75.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 53.05, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 130.65, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 130.89, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 102.29, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 232.53, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 18.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 38.7, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 495.82, + "p95": 495.82, + "p99": 495.82, + "samples": 1 + }, + "connectMs": { + "median": 176.99, + "p95": 176.99, + "p99": 176.99, + "samples": 1 + }, + "taskMs": { + "median": 10426.51, + "p95": 10426.51, + "p99": 10426.51, + "samples": 1 + }, + "loopMs": { + "median": 1515.72, + "p95": 6597.6, + "p99": 6597.6, + "samples": 20 + }, + "actionsPerSecond": { + "median": 19.18, + "p95": 19.18, + "p99": 19.18, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.85, + "p95": 8.23, + "p99": 8.23, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 217.76, + "p95": 4525.82, + "p99": 4525.82, + "samples": 20 + }, + "waitForSelector": { + "median": 97.77, + "p95": 285.45, + "p99": 352.22, + "samples": 60 + }, + "screenshot": { + "median": 239.72, + "p95": 350.38, + "p99": 483.27, + "samples": 40 + }, + "textContent": { + "median": 3.96, + "p95": 10.31, + "p99": 10.96, + "samples": 40 + }, + "click": { + "median": 275.56, + "p95": 3340.96, + "p99": 3340.96, + "samples": 20 + }, + "goBack": { + "median": 34.78, + "p95": 59.11, + "p99": 59.11, + "samples": 20 + } + } + }, + "compositeScore": 87.57, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 7, + "createMs": 1086.2, + "connectMs": 2747.36, + "taskMs": 111913.86, + "releaseMs": 698.51, + "totalMs": 116709.16, + "aggregateActionsPerSecond": 1.25, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "48f427ea-78d5-4650-abd0-7d00204a69d7", + "createMs": 535.3, + "connectMs": 847.24, + "taskMs": 30467.14, + "actionsCompleted": 20, + "actionsPerSecond": 0.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 720.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1152.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2192.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 287.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 7390.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 899.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1832.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 102.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 297.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1933.83, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 384.91, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 793.97, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1448.68, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 104.03, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 6369.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1223.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2022.76, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 108.99, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 231.92, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 968.91, + "success": true + } + ] + }, + { + "sessionId": "b509b808-9b17-4709-b28c-8154fafda36c", + "createMs": 1084.45, + "connectMs": 1814.63, + "taskMs": 52660.11, + "actionsCompleted": 20, + "actionsPerSecond": 0.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1712.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6101.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2946.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 248.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 9685.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1192.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1690.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 211.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1041.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2405.4, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 711.53, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2861.87, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3083.5, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 461.54, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 10808.82, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1583.85, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2363.12, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 266.88, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 919.43, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2364.1, + "success": true + } + ] + }, + { + "sessionId": "5eee679a-0736-4552-a776-ec68fca7284f", + "createMs": 890.69, + "connectMs": 2268.25, + "taskMs": 87286.32, + "actionsCompleted": 20, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2118.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 9277.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3473.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 1102.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 7554.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2717.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5428.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1001.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 789.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2691.39, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 987.92, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2419.9, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 5994.58, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 208.41, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 13278.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4987.1, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 15342.6, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3559.77, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 716.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3636.99, + "success": true + } + ] + }, + { + "sessionId": "88f2ad1c-3f4b-4c7e-b627-2844dc52426c", + "createMs": 460.82, + "connectMs": 821.47, + "taskMs": 24824.76, + "actionsCompleted": 20, + "actionsPerSecond": 0.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 954.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1102.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1800.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 206.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 5890.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1235.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1025.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 107.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 293.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 793.42, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 337.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 901.65, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1323.54, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 173.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 5318.81, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 925.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1067.69, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 96.45, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 285.77, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 983.22, + "success": true + } + ] + }, + { + "sessionId": "3f63cd56-fe85-4cef-b805-232358793713", + "createMs": 513.42, + "connectMs": 2746.32, + "taskMs": 63010.21, + "actionsCompleted": 20, + "actionsPerSecond": 0.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2178.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3641.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5787.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 203.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 8159.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1314.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2281.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 217.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1997.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2303.65, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 894.49, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 1939.09, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4928.27, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 191.2, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 11546.77, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4448.71, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 5581.4, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 330.71, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 977.22, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4087.65, + "success": true + } + ] + }, + { + "sessionId": "658dfd85-c77b-4f16-a5a2-912fbaf53021", + "createMs": 626.69, + "connectMs": 1816.79, + "taskMs": 111912.08, + "actionsCompleted": 20, + "actionsPerSecond": 0.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1830.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5965.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10936.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 200.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16196.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1748.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 7684.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 225.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1154.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1922.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1145.67, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2837.54, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 11309.16, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 458.05, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 19282.75, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 3840.26, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 19149.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 695.77, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1102.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4223.42, + "success": true + } + ] + }, + { + "sessionId": "6a6b5128-9001-46af-a1c7-9b98152612d8", + "createMs": 495.59, + "connectMs": 1547.46, + "taskMs": 75610.43, + "actionsCompleted": 20, + "actionsPerSecond": 0.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1861.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4299.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5728.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 1038.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 12154.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2428.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3380.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 587.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 577.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4055.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 687.9, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2053.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4141.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 310.23, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 10073.59, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1947.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 12453.59, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 407.31, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1678.79, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 5745.1, + "success": true + } + ] + } + ], + "maxLiveSessions": 7, + "maxConcurrentActions": 7, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 7, + "p95": 7, + "p99": 7, + "samples": 1 + }, + "createMs": { + "median": 1086.2, + "p95": 1086.2, + "p99": 1086.2, + "samples": 1 + }, + "connectMs": { + "median": 2747.36, + "p95": 2747.36, + "p99": 2747.36, + "samples": 1 + }, + "taskMs": { + "median": 111913.86, + "p95": 111913.86, + "p99": 111913.86, + "samples": 1 + }, + "loopMs": { + "median": 31505.11, + "p95": 64045.35, + "p99": 64045.35, + "samples": 14 + }, + "actionsPerSecond": { + "median": 1.25, + "p95": 1.25, + "p99": 1.25, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.32, + "p95": 0.81, + "p99": 0.81, + "samples": 7 + }, + "perActionType": { + "navigate": { + "median": 971.15, + "p95": 2178.29, + "p99": 2178.29, + "samples": 14 + }, + "waitForSelector": { + "median": 2333.87, + "p95": 5745.1, + "p99": 5965.98, + "samples": 42 + }, + "screenshot": { + "median": 3426.96, + "p95": 12453.59, + "p99": 15342.6, + "samples": 28 + }, + "textContent": { + "median": 237.1, + "p95": 1038.21, + "p99": 1102.94, + "samples": 28 + }, + "click": { + "median": 9879.39, + "p95": 19282.75, + "p99": 19282.75, + "samples": 14 + }, + "goBack": { + "median": 854.31, + "p95": 1997.08, + "p99": 1997.08, + "samples": 14 + } + } + }, + "compositeScore": 29.76, + "successRate": 0.7, + "sessionCeiling": 7, + "concurrencyAchieved": 7, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 5, + "createMs": 7778.58, + "connectMs": 524.49, + "taskMs": 24372.68, + "releaseMs": 551.48, + "totalMs": 35357.76, + "aggregateActionsPerSecond": 4.1, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "f0c339cf-e8f9-426d-9ce0-763f985338ff", + "createMs": 941.72, + "connectMs": 467.05, + "taskMs": 15995.09, + "actionsCompleted": 20, + "actionsPerSecond": 1.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 331.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 531.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 608.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2262.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 455.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 821.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 116.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 434.99, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 172.3, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 420.8, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 561.48, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 56.96, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 7307.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 476.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 740.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 53.15, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 114.01, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 424.32, + "success": true + } + ] + }, + { + "sessionId": "3b0c4eff-9c63-465b-a30b-d797190d0d73", + "createMs": 789.28, + "connectMs": 523.96, + "taskMs": 24371.16, + "actionsCompleted": 20, + "actionsPerSecond": 0.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 742.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 706.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 897.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 7674.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 641.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 776.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 218.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 585.32, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 409.78, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 738.66, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 999.29, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 88.45, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3373.55, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 683.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4749.7, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 79.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 209.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 646.63, + "success": true + } + ] + }, + { + "sessionId": "e26de73b-3737-4902-87d2-345741a2a54a", + "createMs": 987.1, + "connectMs": 442.92, + "taskMs": 15936.59, + "actionsCompleted": 20, + "actionsPerSecond": 1.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 474.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 537.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 671.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1728.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 729.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 873.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 121.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 441.79, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 280.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 459.06, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 5853.67, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 76.72, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1618.39, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 569.47, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 729.28, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 60.35, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 134.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 465.45, + "success": true + } + ] + }, + { + "sessionId": "649a9ec8-3020-47eb-adbc-f87f77739e0a", + "createMs": 676.96, + "connectMs": 470.09, + "taskMs": 10093.35, + "actionsCompleted": 20, + "actionsPerSecond": 1.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 328.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 556.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 721.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 56.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1441.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1044.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 651.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 441.58, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 217.86, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 535.23, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 640.32, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 53.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1448.32, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 516.21, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 652.39, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 56.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 123.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 432.06, + "success": true + } + ] + }, + { + "sessionId": "086a1fe6-5f31-4141-b9f1-33fa8322285e", + "createMs": 902.49, + "connectMs": 412.1, + "taskMs": 13894.83, + "actionsCompleted": 20, + "actionsPerSecond": 1.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 289.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 540.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 639.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 57.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 5485.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 615.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 435.22, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 213.8, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 455.4, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 626.31, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 56.7, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1927.91, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 427.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 650.04, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 57.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 136.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 445.96, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 7778.58, + "p95": 7778.58, + "p99": 7778.58, + "samples": 1 + }, + "connectMs": { + "median": 524.49, + "p95": 524.49, + "p99": 524.49, + "samples": 1 + }, + "taskMs": { + "median": 24372.68, + "p95": 24372.68, + "p99": 24372.68, + "samples": 1 + }, + "loopMs": { + "median": 7293.09, + "p95": 12392.95, + "p99": 12392.95, + "samples": 10 + }, + "actionsPerSecond": { + "median": 4.1, + "p95": 4.1, + "p99": 4.1, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.25, + "p95": 1.98, + "p99": 1.98, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 308.81, + "p95": 742.52, + "p99": 742.52, + "samples": 10 + }, + "waitForSelector": { + "median": 523.67, + "p95": 729.07, + "p99": 738.66, + "samples": 30 + }, + "screenshot": { + "median": 696.7, + "p95": 4749.7, + "p99": 4749.7, + "samples": 20 + }, + "textContent": { + "median": 56.77, + "p95": 79.16, + "p99": 79.16, + "samples": 20 + }, + "click": { + "median": 2095.13, + "p95": 7674.66, + "p99": 7674.66, + "samples": 10 + }, + "goBack": { + "median": 128.89, + "p95": 218.26, + "p99": 218.26, + "samples": 10 + } + } + }, + "compositeScore": 36.09, + "successRate": 0.5, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 725.6, + "connectMs": 316.48, + "taskMs": 8296.83, + "releaseMs": 115.05, + "totalMs": 9466.99, + "aggregateActionsPerSecond": 24.11, + "sessions": [ + { + "sessionId": "sess_d79f7edd67d64392aaf42026ea79a5ba", + "createMs": 563.77, + "connectMs": 99.42, + "taskMs": 4411.11, + "actionsCompleted": 20, + "actionsPerSecond": 4.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 343.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 236.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 230.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 435.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 405.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 245.01, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 321.76, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 129.84, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 192.79, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 392.7, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 8.34, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 379.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 642.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 201.31, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.8, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 86.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 105.06, + "success": true + } + ] + }, + { + "sessionId": "sess_8417ecf0f3694f35b9fa54e32c1d53c1", + "createMs": 597.16, + "connectMs": 99.08, + "taskMs": 5894.83, + "actionsCompleted": 20, + "actionsPerSecond": 3.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 418, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 360.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 222.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 710.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 381.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 250.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 74.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 238.57, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 681.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 524.17, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 839.33, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 205.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 353.22, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 64.13, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 263.63, + "success": true + } + ] + }, + { + "sessionId": "sess_faa1d9f008c340159eac5265c26ad144", + "createMs": 605.86, + "connectMs": 177.64, + "taskMs": 8295.51, + "actionsCompleted": 20, + "actionsPerSecond": 2.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 327.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 610.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 410.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 867.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1045.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 453.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 45.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 184.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 464.06, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 355.3, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 335.54, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 337.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 37.47, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 791.09, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1096.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 384.06, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 32.09, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 176.52, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 312.66, + "success": true + } + ] + }, + { + "sessionId": "sess_7e66c9f7a0f946298cf3e01a29b3de10", + "createMs": 716.21, + "connectMs": 107.53, + "taskMs": 4503.59, + "actionsCompleted": 20, + "actionsPerSecond": 4.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 409.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 150.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 284.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 666.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 270.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.1, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 209.52, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 102, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 283.26, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 8.94, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 501.42, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 811.23, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 281.29, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 61.85, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 123.76, + "success": true + } + ] + }, + { + "sessionId": "sess_db56ede2c2dd4368a681d9649f374835", + "createMs": 513.03, + "connectMs": 94.43, + "taskMs": 4949.47, + "actionsCompleted": 20, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 131.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 521.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 322.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 334.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 251.31, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 350.96, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 172.52, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 838.17, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 253.37, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 358.84, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.62, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 90.98, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.58, + "success": true + } + ] + }, + { + "sessionId": "sess_800c6c8d04ae4a0bb0568cb33f19b64b", + "createMs": 723.37, + "connectMs": 92.76, + "taskMs": 6913.17, + "actionsCompleted": 20, + "actionsPerSecond": 2.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 276.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 188.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 163.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 546.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 958.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 928.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 202.65, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 346.83, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 319.82, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 166.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.2, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 801.43, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 928.62, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 726.05, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.76, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 199.76, + "success": true + } + ] + }, + { + "sessionId": "sess_a855e1e38442424cbfad1330c2eefc83", + "createMs": 554.65, + "connectMs": 315.77, + "taskMs": 6572.45, + "actionsCompleted": 20, + "actionsPerSecond": 3.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1160.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 125.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1454.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 226.33, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 325.38, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 260.33, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 229.48, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 9.96, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 448.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 445.25, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 238.55, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.03, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 79.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 99.77, + "success": true + } + ] + }, + { + "sessionId": "sess_2966eb776ef7423cb532e0d62762baa4", + "createMs": 645.12, + "connectMs": 100.05, + "taskMs": 6585.22, + "actionsCompleted": 20, + "actionsPerSecond": 3.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2263.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 368.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 349.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 311.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 741.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.34, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 179.87, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 202.13, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 197.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.46, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 342.36, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 475.36, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 436.47, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 23.65, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 81.31, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 114.31, + "success": true + } + ] + }, + { + "sessionId": "sess_383225ff06284e898aa93c0da60f3849", + "createMs": 642.8, + "connectMs": 94.84, + "taskMs": 4145.45, + "actionsCompleted": 20, + "actionsPerSecond": 4.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 222.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 153.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 645.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 311.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 245.46, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 101.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 238.74, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.27, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 520.89, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 276.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 511.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 33.86, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 73.47, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 100.61, + "success": true + } + ] + }, + { + "sessionId": "sess_d709756e00fc44d7b14f06500ed65686", + "createMs": 621.26, + "connectMs": 179.26, + "taskMs": 6249.38, + "actionsCompleted": 20, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 275.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 336.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 317.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 811.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 652.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 576.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 49.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 97.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 252.65, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 265.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 348.06, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 331.48, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 32.64, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 753.47, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 424.04, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 322.74, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 31.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 105.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 229.07, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 725.6, + "p95": 725.6, + "p99": 725.6, + "samples": 1 + }, + "connectMs": { + "median": 316.48, + "p95": 316.48, + "p99": 316.48, + "samples": 1 + }, + "taskMs": { + "median": 8296.83, + "p95": 8296.83, + "p99": 8296.83, + "samples": 1 + }, + "loopMs": { + "median": 2594.86, + "p95": 4436.05, + "p99": 4436.05, + "samples": 20 + }, + "actionsPerSecond": { + "median": 24.11, + "p95": 24.11, + "p99": 24.11, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.3, + "p95": 4.82, + "p99": 4.82, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 326.54, + "p95": 1160.37, + "p99": 1160.37, + "samples": 20 + }, + "waitForSelector": { + "median": 270.28, + "p95": 741.81, + "p99": 928.62, + "samples": 60 + }, + "screenshot": { + "median": 282.27, + "p95": 511.52, + "p99": 576.8, + "samples": 40 + }, + "textContent": { + "median": 10.67, + "p95": 34.49, + "p99": 37.47, + "samples": 40 + }, + "click": { + "median": 595.94, + "p95": 867.67, + "p99": 867.67, + "samples": 20 + }, + "goBack": { + "median": 74.13, + "p95": 176.52, + "p99": 176.52, + "samples": 20 + } + } + }, + "compositeScore": 87.31, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c10/2026-08-18.json b/results/browser-concurrent/c10/2026-08-18.json new file mode 100644 index 00000000..fa4d6e2e --- /dev/null +++ b/results/browser-concurrent/c10/2026-08-18.json @@ -0,0 +1,8693 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.734Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 10, + "rounds": 1, + "actionsPerSession": 20, + "loopsPerSession": 2, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 438.06, + "connectMs": 369.26, + "taskMs": 5659.93, + "releaseMs": 862.62, + "totalMs": 7339.98, + "aggregateActionsPerSecond": 35.34, + "sessions": [ + { + "sessionId": "b2a5477e-0355-48e7-8344-e7643839bd10", + "createMs": 436.22, + "connectMs": 312.35, + "taskMs": 3988.76, + "actionsCompleted": 20, + "actionsPerSecond": 5.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 718.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 362.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 184.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 204.94, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 332.78, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 71.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 263.89, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 349.85, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 223.86, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 183.65, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 54.9, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 282.36, + "success": true + } + ] + }, + { + "sessionId": "72b27d1a-dc83-4b8b-b6c4-a067459cef84", + "createMs": 404.8, + "connectMs": 276.54, + "taskMs": 3215.87, + "actionsCompleted": 20, + "actionsPerSecond": 6.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 583.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 236.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 218.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 141.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 279.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.59, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 327.57, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.69, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 150.13, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 204.25, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 130.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 224.13, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 20.58, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 242.44, + "success": true + } + ] + }, + { + "sessionId": "155b0b6d-da42-4333-b3f0-be10f238e3ae", + "createMs": 358.18, + "connectMs": 232.79, + "taskMs": 3941.29, + "actionsCompleted": 20, + "actionsPerSecond": 5.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 76.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 203.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 266.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 356.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.2, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 146.52, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 131.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 604.66, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.42, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 204.72, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 312.9, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 228.78, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.8, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 131.25, + "success": true + } + ] + }, + { + "sessionId": "29b07b76-2e80-42c9-ab99-fb16b5037d4b", + "createMs": 381.87, + "connectMs": 234.66, + "taskMs": 5123.44, + "actionsCompleted": 20, + "actionsPerSecond": 3.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1093.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 76.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 396.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 552.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 414.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 86.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.29, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 198.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 156.02, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 218.76, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.05, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 376.22, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 476.16, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 369.98, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 66.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 207.85, + "success": true + } + ] + }, + { + "sessionId": "8c7964f8-cbe7-4b77-8b1d-d35119e85137", + "createMs": 404.58, + "connectMs": 263.81, + "taskMs": 3959.3, + "actionsCompleted": 20, + "actionsPerSecond": 5.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 70.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 374.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 297.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 419.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.84, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 57.3, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 233.4, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 276.06, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 230.6, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.16, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.26, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 200.35, + "success": true + } + ] + }, + { + "sessionId": "90486b0f-e24d-4d94-a8f0-c8fcdf09f540", + "createMs": 404.51, + "connectMs": 259.94, + "taskMs": 3483.89, + "actionsCompleted": 20, + "actionsPerSecond": 5.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 190.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 232.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 350.93, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 211.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 309.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 59.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 206.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.46, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 215.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 264.02, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 167.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.48, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 181.04, + "success": true + } + ] + }, + { + "sessionId": "fc5f2c91-9546-487f-a35e-d01f93758ede", + "createMs": 378.19, + "connectMs": 233.3, + "taskMs": 3393.83, + "actionsCompleted": 20, + "actionsPerSecond": 5.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 642.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 216.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 270.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 238.07, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 148.39, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 213.57, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.97, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 223.3, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 168.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 213.05, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.06, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 35.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 252.29, + "success": true + } + ] + }, + { + "sessionId": "eac7d76d-735c-4e6a-a4fa-2a7fa8479da0", + "createMs": 405.29, + "connectMs": 270.52, + "taskMs": 3883.29, + "actionsCompleted": 20, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 818.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 96.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 236.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 387.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 303.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 203.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 238.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 371.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 63.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 212.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.72, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 207.93, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 223.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 189.63, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.81, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 231, + "success": true + } + ] + }, + { + "sessionId": "0090b4a5-f4b5-49eb-ad5c-b4fc6bbc7671", + "createMs": 405.34, + "connectMs": 368.19, + "taskMs": 5658.27, + "actionsCompleted": 20, + "actionsPerSecond": 3.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1089.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 317.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 291.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 750.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 411.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.74, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 449.74, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 70.12, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 249.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 308.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 617.55, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 392.87, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.29, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.46, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 257.31, + "success": true + } + ] + }, + { + "sessionId": "3d9eb8e6-ad80-420a-ad86-a36d1bc46581", + "createMs": 381.7, + "connectMs": 233.1, + "taskMs": 3757.76, + "actionsCompleted": 20, + "actionsPerSecond": 5.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 590.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 68.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 307.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 280.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 420.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 260.49, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 72.94, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 158.74, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 297.93, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 306.4, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 308.43, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.87, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 202.37, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 438.06, + "p95": 438.06, + "p99": 438.06, + "samples": 1 + }, + "connectMs": { + "median": 369.26, + "p95": 369.26, + "p99": 369.26, + "samples": 1 + }, + "taskMs": { + "median": 5659.93, + "p95": 5659.93, + "p99": 5659.93, + "samples": 1 + }, + "loopMs": { + "median": 1961.64, + "p95": 3042.32, + "p99": 3042.32, + "samples": 20 + }, + "actionsPerSecond": { + "median": 35.34, + "p95": 35.34, + "p99": 35.34, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.11, + "p95": 6.22, + "p99": 6.22, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 516.77, + "p95": 1089.21, + "p99": 1089.21, + "samples": 20 + }, + "waitForSelector": { + "median": 184.5, + "p95": 312.9, + "p99": 476.16, + "samples": 60 + }, + "screenshot": { + "median": 236.17, + "p95": 414.06, + "p99": 419.64, + "samples": 40 + }, + "textContent": { + "median": 5.4, + "p95": 8.29, + "p99": 9.41, + "samples": 40 + }, + "click": { + "median": 283.99, + "p95": 387.72, + "p99": 387.72, + "samples": 20 + }, + "goBack": { + "median": 39.64, + "p95": 66.08, + "p99": 66.08, + "samples": 20 + } + } + }, + "compositeScore": 90.89, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 346.46, + "connectMs": 335.03, + "taskMs": 6756.54, + "releaseMs": 121.41, + "totalMs": 7589.74, + "aggregateActionsPerSecond": 29.6, + "sessions": [ + { + "sessionId": "c680796f-0466-4f0d-945c-44d894bf66da", + "createMs": 247.99, + "connectMs": 137.12, + "taskMs": 4806.9, + "actionsCompleted": 20, + "actionsPerSecond": 4.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 659.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 445.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 634.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 386.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 230.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 268.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.25, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 576.78, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 292.59, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 236.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.88, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.32, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 123.37, + "success": true + } + ] + }, + { + "sessionId": "69ce40bc-afd2-4540-91c6-0f39018d4168", + "createMs": 243.4, + "connectMs": 188.31, + "taskMs": 4586.52, + "actionsCompleted": 20, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 539.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 317.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 594.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 216.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 196.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.48, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 21.42, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 595.44, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 250.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 209.36, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 22.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 51.45, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 161.71, + "success": true + } + ] + }, + { + "sessionId": "dec8c0e9-3f77-4004-a900-4a884467f4c1", + "createMs": 255.58, + "connectMs": 183.45, + "taskMs": 4816.55, + "actionsCompleted": 20, + "actionsPerSecond": 4.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 533.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 499.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 562.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 412.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 291.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 151.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 212.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 245.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 18.11, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 524.09, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 329.13, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 311.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.81, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 47.66, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 157.99, + "success": true + } + ] + }, + { + "sessionId": "10aa6fe6-c2cd-4686-b1c4-2e6f7634b1bc", + "createMs": 243.07, + "connectMs": 222.45, + "taskMs": 5973.42, + "actionsCompleted": 20, + "actionsPerSecond": 3.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 636.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 234.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 753.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 820.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.12, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 237.97, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 208.8, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 267.17, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 20.34, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 701.32, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 694.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 25.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 161.67, + "success": true + } + ] + }, + { + "sessionId": "e062d1d1-f9c2-4e9f-bf65-ca0e028c124b", + "createMs": 253.47, + "connectMs": 216.5, + "taskMs": 5322.2, + "actionsCompleted": 20, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 483.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 264.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 854.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 479.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 243.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.97, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 224.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 190.68, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 240.07, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 956.17, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 357.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 273.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.48, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 46.4, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.98, + "success": true + } + ] + }, + { + "sessionId": "1317539e-06d5-4b1e-a9f8-ff85ab5b0308", + "createMs": 303.79, + "connectMs": 277.14, + "taskMs": 5427.28, + "actionsCompleted": 20, + "actionsPerSecond": 3.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 591.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.6, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 286.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 861.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 443.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.22, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 226.81, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 214.34, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 281.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 23.27, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 736.45, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 338, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 317.81, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 26.74, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 73.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 179.52, + "success": true + } + ] + }, + { + "sessionId": "2840d5e3-49ba-4b4b-86c9-d105a79446f8", + "createMs": 257.89, + "connectMs": 246.07, + "taskMs": 4567.04, + "actionsCompleted": 20, + "actionsPerSecond": 4.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 741.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 176.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 688.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 326.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.69, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 247.42, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.76, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 252.89, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.38, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 577.96, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 236.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 263.35, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.58, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 134.26, + "success": true + } + ] + }, + { + "sessionId": "902eae36-fbdf-4aeb-9f73-d5da062a9be9", + "createMs": 341.56, + "connectMs": 299.32, + "taskMs": 5250.25, + "actionsCompleted": 20, + "actionsPerSecond": 3.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 794.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 260.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 293.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 773.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 396.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.91, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 203.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 236.52, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 252.84, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 21.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 633.5, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 275.06, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 278.5, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 63.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 199.13, + "success": true + } + ] + }, + { + "sessionId": "316e20cc-4488-455e-bed0-3ef9d76e6243", + "createMs": 344.93, + "connectMs": 265.94, + "taskMs": 5377.28, + "actionsCompleted": 20, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 214.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 504.7, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 795.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 267.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.88, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 284.1, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 170.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 285.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.31, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 496.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 593.91, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 397.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 20.05, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 116.88, + "success": true + } + ] + }, + { + "sessionId": "263f7234-c9f6-426a-8a3a-1f1c50fb4c66", + "createMs": 247.89, + "connectMs": 334.05, + "taskMs": 6755.02, + "actionsCompleted": 20, + "actionsPerSecond": 2.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 775.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 483.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 819.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 574.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 214.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 207.6, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 378.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 22.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 818.5, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 454.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 677.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 23.65, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 61.43, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 173.99, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 346.46, + "p95": 346.46, + "p99": 346.46, + "samples": 1 + }, + "connectMs": { + "median": 335.03, + "p95": 335.03, + "p99": 335.03, + "samples": 1 + }, + "taskMs": { + "median": 6756.54, + "p95": 6756.54, + "p99": 6756.54, + "samples": 1 + }, + "loopMs": { + "median": 2643.52, + "p95": 3302.98, + "p99": 3302.98, + "samples": 20 + }, + "actionsPerSecond": { + "median": 29.6, + "p95": 29.6, + "p99": 29.6, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.78, + "p95": 4.38, + "p99": 4.38, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 383.77, + "p95": 775.55, + "p99": 775.55, + "samples": 20 + }, + "waitForSelector": { + "median": 214.61, + "p95": 499.5, + "p99": 593.91, + "samples": 60 + }, + "screenshot": { + "median": 270.7, + "p95": 378.98, + "p99": 397.67, + "samples": 40 + }, + "textContent": { + "median": 20.2, + "p95": 24.13, + "p99": 25.02, + "samples": 40 + }, + "click": { + "median": 661.64, + "p95": 861.34, + "p99": 861.34, + "samples": 20 + }, + "goBack": { + "median": 48.58, + "p95": 63.08, + "p99": 63.08, + "samples": 20 + } + } + }, + "compositeScore": 88.89, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 465.42, + "connectMs": 190.68, + "taskMs": 7920.91, + "releaseMs": 131.83, + "totalMs": 8726.72, + "aggregateActionsPerSecond": 25.25, + "sessions": [ + { + "sessionId": "43127471-cadd-4f7c-af44-1d13f6a4d762", + "createMs": 463.57, + "connectMs": 147.74, + "taskMs": 5233.66, + "actionsCompleted": 20, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 833.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 434.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 517.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 301.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 151.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 189.81, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 332.29, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 153.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 444.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.63, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 465.09, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 327.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 322.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 143.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 149.09, + "success": true + } + ] + }, + { + "sessionId": "5e29c853-ff57-4cae-8d5c-65ec80dd8e05", + "createMs": 297.23, + "connectMs": 181.64, + "taskMs": 4911.13, + "actionsCompleted": 20, + "actionsPerSecond": 4.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 463.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 275.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 119.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 294.29, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 211.04, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 421.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 461.22, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 233.66, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 334.2, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.47, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 138.84, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 141.05, + "success": true + } + ] + }, + { + "sessionId": "aa03fcc3-a56f-4254-8c42-96fb6cb46f60", + "createMs": 457.14, + "connectMs": 186.43, + "taskMs": 5037.09, + "actionsCompleted": 20, + "actionsPerSecond": 3.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 673.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 344.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 447.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 574.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 102.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.73, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 241, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 202.69, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 339.94, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.86, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 460.23, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 276.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 397.86, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 89.69, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 173.05, + "success": true + } + ] + }, + { + "sessionId": "b666f499-c439-4700-9469-bd29b1124859", + "createMs": 354.9, + "connectMs": 184.56, + "taskMs": 7918.42, + "actionsCompleted": 20, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 893.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 105.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 411, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 525.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1445.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 502.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 215.62, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 281.15, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 260.89, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 362.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 557.29, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 920.2, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 787.12, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.67, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 199.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 252.06, + "success": true + } + ] + }, + { + "sessionId": "aaf64415-42ea-4e62-909b-fd376c65e3fa", + "createMs": 334.05, + "connectMs": 180.19, + "taskMs": 6102.79, + "actionsCompleted": 20, + "actionsPerSecond": 3.28, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 810.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 113.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 437.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 645.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 507.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 448.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.28, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 298.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 180.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 377.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.53, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 721.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 438.67, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 514.94, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 97.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.51, + "success": true + } + ] + }, + { + "sessionId": "1023baf2-6613-4de5-b346-c189032d77af", + "createMs": 443.77, + "connectMs": 185.89, + "taskMs": 5114.5, + "actionsCompleted": 20, + "actionsPerSecond": 3.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 682.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 448.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 482.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 370.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 119.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 162.4, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 346.29, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.23, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 435.71, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 392.42, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 392.19, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.09, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 107.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 155.69, + "success": true + } + ] + }, + { + "sessionId": "14e81c09-b991-47d0-973f-0c42cd75e55e", + "createMs": 289.27, + "connectMs": 177.33, + "taskMs": 4846.23, + "actionsCompleted": 20, + "actionsPerSecond": 4.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 99.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 409.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 115.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.82, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 288.5, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 207.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 355.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.37, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 436.52, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 303.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 340.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.28, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 106.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 134.66, + "success": true + } + ] + }, + { + "sessionId": "65e66038-616e-453b-8b05-e387e388c7f0", + "createMs": 437.92, + "connectMs": 190.18, + "taskMs": 6022.14, + "actionsCompleted": 20, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 519.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 314.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.29, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 297.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 191.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 338.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 373.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 285.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 272.69, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.21, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 100.32, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1432.36, + "success": true + } + ] + }, + { + "sessionId": "18853d54-9d44-4617-8dc5-72064f83679e", + "createMs": 429.27, + "connectMs": 182.4, + "taskMs": 7150.46, + "actionsCompleted": 20, + "actionsPerSecond": 2.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 812.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 404.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 473.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1114.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 513, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 223.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 303.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 221.02, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 422.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 442.37, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 952.68, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 564.7, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.39, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 159.33, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 175, + "success": true + } + ] + }, + { + "sessionId": "4da2dde4-c357-4e33-a16d-e3ff056cbb4f", + "createMs": 395.22, + "connectMs": 183.86, + "taskMs": 5784.42, + "actionsCompleted": 20, + "actionsPerSecond": 3.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 646.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 511.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 625.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 542.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 242.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 212.23, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 181.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 327.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.59, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 430, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 546.22, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 425.44, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 151.44, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 211.29, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 465.42, + "p95": 465.42, + "p99": 465.42, + "samples": 1 + }, + "connectMs": { + "median": 190.68, + "p95": 190.68, + "p99": 190.68, + "samples": 1 + }, + "taskMs": { + "median": 7920.91, + "p95": 7920.91, + "p99": 7920.91, + "samples": 1 + }, + "loopMs": { + "median": 2826.28, + "p95": 3836.17, + "p99": 3836.17, + "samples": 20 + }, + "actionsPerSecond": { + "median": 25.25, + "p95": 25.25, + "p99": 25.25, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.64, + "p95": 4.13, + "p99": 4.13, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 489.58, + "p95": 833.49, + "p99": 833.49, + "samples": 20 + }, + "waitForSelector": { + "median": 204.95, + "p95": 546.22, + "p99": 952.68, + "samples": 60 + }, + "screenshot": { + "median": 400.98, + "p95": 514.94, + "p99": 564.7, + "samples": 40 + }, + "textContent": { + "median": 12.35, + "p95": 19.67, + "p99": 20.89, + "samples": 40 + }, + "click": { + "median": 464.07, + "p95": 645.25, + "p99": 645.25, + "samples": 20 + }, + "goBack": { + "median": 120.13, + "p95": 159.33, + "p99": 159.33, + "samples": 20 + } + } + }, + "compositeScore": 88.06, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 411.65, + "connectMs": 160.3, + "taskMs": 3654.93, + "releaseMs": 50.15, + "totalMs": 4288.26, + "aggregateActionsPerSecond": 54.72, + "sessions": [ + { + "sessionId": "xi6flq28re9i7kihfeqygolh", + "createMs": 277.44, + "connectMs": 61.32, + "taskMs": 2621.7, + "actionsCompleted": 20, + "actionsPerSecond": 7.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 499.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 241.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 128.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 253.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 31.24, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 168.36, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 89.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 191.57, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.94, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 173.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 111.83, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 266.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 32.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 37.96, + "success": true + } + ] + }, + { + "sessionId": "m1vyic726c2mhiykccrywdcg", + "createMs": 410.55, + "connectMs": 105.68, + "taskMs": 3654.15, + "actionsCompleted": 20, + "actionsPerSecond": 5.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 885.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 271.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 503.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 145.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 195.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 167.59, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 127.08, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 223.4, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 10.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 335.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 136.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 222.14, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.83, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.29, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 81.91, + "success": true + } + ] + }, + { + "sessionId": "rfsqd0y0hbdywuzylbcm5ie5", + "createMs": 284.5, + "connectMs": 114.14, + "taskMs": 2396.4, + "actionsCompleted": 20, + "actionsPerSecond": 8.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 294.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 125.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 347.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 150.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 255.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 36.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 131.8, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.7, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 183.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 147.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 105.34, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 237.08, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 25.83, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 38.76, + "success": true + } + ] + }, + { + "sessionId": "knmse2rfy3acfg3qfizz4kgz", + "createMs": 278.02, + "connectMs": 63.51, + "taskMs": 3406.91, + "actionsCompleted": 20, + "actionsPerSecond": 5.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 288.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 179.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 298.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 505.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 91.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 135.62, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 93.32, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 146.2, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 272.1, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 500.69, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 280.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 48.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 72.59, + "success": true + } + ] + }, + { + "sessionId": "fwkw379hz0qm1ekuqkol5klw", + "createMs": 306.17, + "connectMs": 87.64, + "taskMs": 2615.79, + "actionsCompleted": 20, + "actionsPerSecond": 7.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 240.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 201.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 320.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 26.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 48.69, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 45.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 226.39, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 210.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 165.43, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 265.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.05, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.03, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 45.68, + "success": true + } + ] + }, + { + "sessionId": "hvprjy9s3e9bbdsfssx2aq8j", + "createMs": 311.34, + "connectMs": 67.21, + "taskMs": 2665.07, + "actionsCompleted": 20, + "actionsPerSecond": 7.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 437.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 118.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 306.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 200.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 207.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 18.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 44.36, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 148.31, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 91.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 180.06, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 183.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 88.36, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 395.58, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 20.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 37.7, + "success": true + } + ] + }, + { + "sessionId": "rtoffba6v0zghjamsdvphd2l", + "createMs": 280.59, + "connectMs": 72.76, + "taskMs": 2383.88, + "actionsCompleted": 20, + "actionsPerSecond": 8.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 351.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 214.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 490.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 84.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 23.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 35.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 89.68, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 49.45, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 207.73, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 183.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 82.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 203.68, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 24.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 32.42, + "success": true + } + ] + }, + { + "sessionId": "boadw4fvrphj4sj9bg55lodr", + "createMs": 334.79, + "connectMs": 159.81, + "taskMs": 3030.91, + "actionsCompleted": 20, + "actionsPerSecond": 6.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 500.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 101.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 241.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 300.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 165.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 86.91, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 218.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 123.74, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 219.61, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 8.6, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 262.57, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 133.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 228.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 32.66, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 74.44, + "success": true + } + ] + }, + { + "sessionId": "hjkk4pihm7dbmxa9zs9pcypc", + "createMs": 305.88, + "connectMs": 118.41, + "taskMs": 3478.49, + "actionsCompleted": 20, + "actionsPerSecond": 5.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 384.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 142.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 250.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 226.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 480.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 66.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 180.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 58.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 249.28, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.11, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 258.01, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 434.21, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 282.17, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 64.65, + "success": true + } + ] + }, + { + "sessionId": "kyohf6dg03ptfwrm9tytgp5c", + "createMs": 295.3, + "connectMs": 126.9, + "taskMs": 2354.78, + "actionsCompleted": 20, + "actionsPerSecond": 8.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 312.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 229.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 177.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 21.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 108.02, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 47.31, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 177.25, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.67, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 216.13, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 202.95, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 189.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.42, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 25.37, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 35.38, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 411.65, + "p95": 411.65, + "p99": 411.65, + "samples": 1 + }, + "connectMs": { + "median": 160.3, + "p95": 160.3, + "p99": 160.3, + "samples": 1 + }, + "taskMs": { + "median": 3654.93, + "p95": 3654.93, + "p99": 3654.93, + "samples": 1 + }, + "loopMs": { + "median": 1448.45, + "p95": 1907.94, + "p99": 1907.94, + "samples": 20 + }, + "actionsPerSecond": { + "median": 54.72, + "p95": 54.72, + "p99": 54.72, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.57, + "p95": 8.49, + "p99": 8.49, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 248.74, + "p95": 500.37, + "p99": 500.37, + "samples": 20 + }, + "waitForSelector": { + "median": 91.29, + "p95": 201.36, + "p99": 434.21, + "samples": 60 + }, + "screenshot": { + "median": 222.77, + "p95": 282.17, + "p99": 311.68, + "samples": 40 + }, + "textContent": { + "median": 3.87, + "p95": 9.72, + "p99": 9.83, + "samples": 40 + }, + "click": { + "median": 249.78, + "p95": 490.2, + "p99": 490.2, + "samples": 20 + }, + "goBack": { + "median": 30.18, + "p95": 40.29, + "p99": 40.29, + "samples": 20 + } + } + }, + "compositeScore": 94.57, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 5, + "createMs": 2538.8, + "connectMs": 4117.31, + "taskMs": 175289.43, + "releaseMs": 6360.56, + "totalMs": 189902.52, + "aggregateActionsPerSecond": 0.53, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "86e2c30c-3dcb-4043-8268-ac0d3af4c619", + "createMs": 1865.13, + "connectMs": 4116.88, + "taskMs": 152744.94, + "actionsCompleted": 20, + "actionsPerSecond": 0.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1862.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4551, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 14083.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4287.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 20148.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3546.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 12325.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1195.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1687.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 13744.99, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1367.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3914.82, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 20979.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 407.86, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 21476.23, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 9416.08, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 12384.28, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 433.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1910.34, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3021.31, + "success": true + } + ] + }, + { + "sessionId": "a06933ce-02e5-4dd6-afb6-2f02961d6520", + "createMs": 957.85, + "connectMs": 2719.21, + "taskMs": 116359.79, + "actionsCompleted": 14, + "actionsPerSecond": 0.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1692.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5157.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 7814.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 949.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 30001.49, + "success": false, + "error": "Action timed out" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 11, + "type": "navigate", + "durationMs": 3810.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 8414.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3895.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 417.49, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 22143.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 5290.73, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 18740.54, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 1759.42, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2247.01, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4024.83, + "success": true + } + ] + }, + { + "sessionId": "dcda49a0-dcd2-4b73-9899-706194be2c5e", + "createMs": 1869.77, + "connectMs": 2160.62, + "taskMs": 124181.01, + "actionsCompleted": 20, + "actionsPerSecond": 0.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2810.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6470.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5124.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 411.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16844.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 7246.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 8584.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 469.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1861.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5363.82, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1522.35, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 6320.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 7622.58, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 462.32, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 17459.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 6713.68, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 24219.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 419.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 937.49, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3315.95, + "success": true + } + ] + }, + { + "sessionId": "44869d40-64e9-4e8e-87f2-60f2615ac360", + "createMs": 924.18, + "connectMs": 2111.53, + "taskMs": 175287.95, + "actionsCompleted": 19, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2326.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4832.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 15840.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 427.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 22384.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3841.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 14078.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 417.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1652.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5287.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1339.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4184.48, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 30000.93, + "success": false, + "error": "Action timed out" + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6875.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 22763.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4342.25, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 22933.72, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 941.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2692.13, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 8125.89, + "success": true + } + ] + }, + { + "sessionId": "6863943e-19b9-476c-8103-9705af1239c8", + "createMs": 2536.61, + "connectMs": 2114.37, + "taskMs": 114869.62, + "actionsCompleted": 20, + "actionsPerSecond": 0.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2177.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3126.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6529.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 420.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24114.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4377.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4441.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 955.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1261.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5702.62, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 925.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4794.67, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4854.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 1065.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 28201.1, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4086.21, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 12097.91, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 404.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 996.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4336.42, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 2, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2538.8, + "p95": 2538.8, + "p99": 2538.8, + "samples": 1 + }, + "connectMs": { + "median": 4117.31, + "p95": 4117.31, + "p99": 4117.31, + "samples": 1 + }, + "taskMs": { + "median": 152744.94, + "p95": 152744.94, + "p99": 152744.94, + "samples": 1 + }, + "loopMs": { + "median": 65377.35, + "p95": 77433.21, + "p99": 77433.21, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.53, + "p95": 0.53, + "p99": 0.53, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.13, + "p95": 0.17, + "p99": 0.17, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1777.76, + "p95": 3810.27, + "p99": 3810.27, + "samples": 10 + }, + "waitForSelector": { + "median": 4813.72, + "p95": 8414.61, + "p99": 9416.08, + "samples": 28 + }, + "screenshot": { + "median": 12211.87, + "p95": 24219.73, + "p99": 24219.73, + "samples": 18 + }, + "textContent": { + "median": 462.32, + "p95": 6875.44, + "p99": 6875.44, + "samples": 19 + }, + "click": { + "median": 22143.65, + "p95": 28201.1, + "p99": 28201.1, + "samples": 9 + }, + "goBack": { + "median": 1687.49, + "p95": 2692.13, + "p99": 2692.13, + "samples": 9 + } + } + }, + "compositeScore": 10.95, + "successRate": 0.3, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 5, + "createMs": 7022.85, + "connectMs": 535.97, + "taskMs": 15514.94, + "releaseMs": 1067.78, + "totalMs": 24214.4, + "aggregateActionsPerSecond": 6.45, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "769590e5-f37b-44d5-bf81-589efd2c49c2", + "createMs": 1087.03, + "connectMs": 499.86, + "taskMs": 13094.64, + "actionsCompleted": 20, + "actionsPerSecond": 1.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 419.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 585.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 715.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 62.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1926.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2710.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 707.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 62.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 507.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 229.89, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 491.5, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 687.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 66.68, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1910.97, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 505.32, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 623.38, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 62.15, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 142.39, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 532.69, + "success": true + } + ] + }, + { + "sessionId": "28d6a8a7-76fd-42f1-8767-d0ab9f4c0756", + "createMs": 1089.7, + "connectMs": 485.25, + "taskMs": 12911.99, + "actionsCompleted": 20, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 619.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 713.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 66.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1734.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 518.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2903.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 67.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 147.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 598.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 201.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 719.8, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 669.59, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 75.27, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1698.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 515.99, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 631.3, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 78.26, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 155.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 516.27, + "success": true + } + ] + }, + { + "sessionId": "b5d4898d-b1d0-4821-9d3f-45d942a595f2", + "createMs": 1080.42, + "connectMs": 436.53, + "taskMs": 11926.46, + "actionsCompleted": 20, + "actionsPerSecond": 1.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 344.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 535.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 654.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 67.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1531.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 494.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2805.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 529.33, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 242.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 462.93, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 620.25, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 58.62, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1549.34, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 467.79, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 696.06, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 59.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 135.45, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 462.65, + "success": true + } + ] + }, + { + "sessionId": "715e41b1-dee1-4c3e-b9fd-aed99e69a21e", + "createMs": 1048.55, + "connectMs": 383.72, + "taskMs": 12869.12, + "actionsCompleted": 20, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 499.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 524.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 613.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1817.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2914.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 687.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 130.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 436.93, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 228.84, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 419.64, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 593.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1785.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 807.18, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 624.25, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 58.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 132.18, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 431.98, + "success": true + } + ] + }, + { + "sessionId": "21982a13-d597-4059-b68d-9b3cfc163478", + "createMs": 1094.37, + "connectMs": 535.23, + "taskMs": 15513.18, + "actionsCompleted": 20, + "actionsPerSecond": 1.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 348.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 602.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 716.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 62.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 5277.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 582.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 704.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 155.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 495.39, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 200.87, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 484.78, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 709.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 62.91, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3190.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 487.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 681.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 64.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 136.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 485.38, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 7022.85, + "p95": 7022.85, + "p99": 7022.85, + "samples": 1 + }, + "connectMs": { + "median": 535.97, + "p95": 535.97, + "p99": 535.97, + "samples": 1 + }, + "taskMs": { + "median": 15514.94, + "p95": 15514.94, + "p99": 15514.94, + "samples": 1 + }, + "loopMs": { + "median": 6837.92, + "p95": 9008.64, + "p99": 9008.64, + "samples": 10 + }, + "actionsPerSecond": { + "median": 6.45, + "p95": 6.45, + "p99": 6.45, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.55, + "p95": 1.68, + "p99": 1.68, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 261.19, + "p95": 499.92, + "p99": 499.92, + "samples": 10 + }, + "waitForSelector": { + "median": 516.13, + "p95": 807.18, + "p99": 2710.01, + "samples": 30 + }, + "screenshot": { + "median": 687.42, + "p95": 2805.44, + "p99": 2805.44, + "samples": 20 + }, + "textContent": { + "median": 62.94, + "p95": 75.27, + "p99": 75.27, + "samples": 20 + }, + "click": { + "median": 1801.4, + "p95": 5277.91, + "p99": 5277.91, + "samples": 10 + }, + "goBack": { + "median": 143.23, + "p95": 155.52, + "p99": 155.52, + "samples": 10 + } + } + }, + "compositeScore": 36.96, + "successRate": 0.5, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 963.11, + "connectMs": 123.55, + "taskMs": 7161.09, + "releaseMs": 130.32, + "totalMs": 8389.19, + "aggregateActionsPerSecond": 27.93, + "sessions": [ + { + "sessionId": "sess_103dbf0421494193beae2eb75e54c337", + "createMs": 639.27, + "connectMs": 116.67, + "taskMs": 4126.73, + "actionsCompleted": 20, + "actionsPerSecond": 4.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 305.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 178.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 471.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 249.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 330.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 107.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 304.44, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 187.03, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.75, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 394.42, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 152.2, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 527.71, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 179.79, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 134.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 122.36, + "success": true + } + ] + }, + { + "sessionId": "sess_bbf3e7480f1d44d09dec0436853585ab", + "createMs": 553.83, + "connectMs": 116.35, + "taskMs": 4147.32, + "actionsCompleted": 20, + "actionsPerSecond": 4.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 276.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 219.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 298.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 358.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.12, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 256.26, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 272.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 223.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.04, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 325.21, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 169.03, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 642.17, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 82.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 140.5, + "success": true + } + ] + }, + { + "sessionId": "sess_7f346edd97124372a00e4331a7003b74", + "createMs": 717.38, + "connectMs": 123.09, + "taskMs": 3938.59, + "actionsCompleted": 20, + "actionsPerSecond": 5.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 385.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 177.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 208.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 442.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 406.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 166.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.54, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 274.86, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.39, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 158.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 19.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 267.81, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 327.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 164.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 69.6, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 499.22, + "success": true + } + ] + }, + { + "sessionId": "sess_0acf4c1c3e98413c8f4f9b8ce88a217c", + "createMs": 688.83, + "connectMs": 116.62, + "taskMs": 5647.7, + "actionsCompleted": 20, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 213.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 161.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 845.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 483.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 196.08, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.54, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 242.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 507.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 85.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 504.19, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 436.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 503.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.07, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 79.37, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 213.84, + "success": true + } + ] + }, + { + "sessionId": "sess_5ec799c0a0cf46da8e391343a3f7a4f1", + "createMs": 601.22, + "connectMs": 115.66, + "taskMs": 4686.1, + "actionsCompleted": 20, + "actionsPerSecond": 4.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 223.08, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 154.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 545.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 616.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 80.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.78, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 298.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 244.29, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 246.65, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.88, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 597.33, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 492.41, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 275.83, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 84.98, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 119.1, + "success": true + } + ] + }, + { + "sessionId": "sess_d5413adb2326491b9eec49b84e0e9d32", + "createMs": 961.05, + "connectMs": 118.36, + "taskMs": 3327.67, + "actionsCompleted": 20, + "actionsPerSecond": 6.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 325.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 83.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 138.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 435.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 192.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 96.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 295.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.66, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 175.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 9.22, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 266.69, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 361.19, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 171.92, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.24, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 53.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 153.47, + "success": true + } + ] + }, + { + "sessionId": "sess_1263720bf9af467fb118b6209f62c613", + "createMs": 625.85, + "connectMs": 119.32, + "taskMs": 3952.74, + "actionsCompleted": 20, + "actionsPerSecond": 5.06, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 220.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 243.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 142.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 411.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 227.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.23, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 295.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 194.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 202.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 346.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 308.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 199.9, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.45, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 50.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 564.42, + "success": true + } + ] + }, + { + "sessionId": "sess_c2bb134c0a93402bbdeff70a796c5f04", + "createMs": 679.6, + "connectMs": 118.75, + "taskMs": 4341.08, + "actionsCompleted": 20, + "actionsPerSecond": 4.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 645.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 276.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 411.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 314.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 112.03, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 355.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 224.03, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.23, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 297.28, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 672.22, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 210.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.96, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 57.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 148.19, + "success": true + } + ] + }, + { + "sessionId": "sess_3a9f2100e0f84cff9406324900ed3f10", + "createMs": 512.67, + "connectMs": 120.43, + "taskMs": 7159.3, + "actionsCompleted": 20, + "actionsPerSecond": 2.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 380.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 242.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 320.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 527.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 939.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 778.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 270.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 461.72, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 278.39, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 159.15, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 629.78, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 7.5, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 442.92, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 798.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 620.88, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.93, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 82.61, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.4, + "success": true + } + ] + }, + { + "sessionId": "sess_8af48ff8191e4a878a12286155cf42fa", + "createMs": 716.91, + "connectMs": 116.88, + "taskMs": 4509.57, + "actionsCompleted": 20, + "actionsPerSecond": 4.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 425.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 163.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 521.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 353.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 415.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.1, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 293.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 177.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 167.53, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 310.26, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1035.02, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 169.48, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.54, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 65.38, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 91.69, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 963.11, + "p95": 963.11, + "p99": 963.11, + "samples": 1 + }, + "connectMs": { + "median": 123.55, + "p95": 123.55, + "p99": 123.55, + "samples": 1 + }, + "taskMs": { + "median": 7161.09, + "p95": 7161.09, + "p99": 7161.09, + "samples": 1 + }, + "loopMs": { + "median": 2178.91, + "p95": 3205.3, + "p99": 3205.3, + "samples": 20 + }, + "actionsPerSecond": { + "median": 27.93, + "p95": 27.93, + "p99": 27.93, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.71, + "p95": 6.01, + "p99": 6.01, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 297.02, + "p95": 425.55, + "p99": 425.55, + "samples": 20 + }, + "waitForSelector": { + "median": 213.74, + "p95": 616.06, + "p99": 798.75, + "samples": 60 + }, + "screenshot": { + "median": 207.2, + "p95": 620.88, + "p99": 629.78, + "samples": 40 + }, + "textContent": { + "median": 10.4, + "p95": 21.49, + "p99": 23.47, + "samples": 40 + }, + "click": { + "median": 438.79, + "p95": 545.58, + "p99": 545.58, + "samples": 20 + }, + "goBack": { + "median": 66.25, + "p95": 134.56, + "p99": 134.56, + "samples": 20 + } + } + }, + "compositeScore": 89.69, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c10/latest.json b/results/browser-concurrent/c10/latest.json new file mode 100644 index 00000000..fa4d6e2e --- /dev/null +++ b/results/browser-concurrent/c10/latest.json @@ -0,0 +1,8693 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.734Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 10, + "rounds": 1, + "actionsPerSession": 20, + "loopsPerSession": 2, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 438.06, + "connectMs": 369.26, + "taskMs": 5659.93, + "releaseMs": 862.62, + "totalMs": 7339.98, + "aggregateActionsPerSecond": 35.34, + "sessions": [ + { + "sessionId": "b2a5477e-0355-48e7-8344-e7643839bd10", + "createMs": 436.22, + "connectMs": 312.35, + "taskMs": 3988.76, + "actionsCompleted": 20, + "actionsPerSecond": 5.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 718.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 362.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 184.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 204.94, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 332.78, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 71.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 263.89, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 349.85, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 223.86, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 183.65, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 54.9, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 282.36, + "success": true + } + ] + }, + { + "sessionId": "72b27d1a-dc83-4b8b-b6c4-a067459cef84", + "createMs": 404.8, + "connectMs": 276.54, + "taskMs": 3215.87, + "actionsCompleted": 20, + "actionsPerSecond": 6.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 583.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 236.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 218.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 141.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 279.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.59, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 327.57, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.69, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 150.13, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 204.25, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 130.77, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 224.13, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 20.58, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 242.44, + "success": true + } + ] + }, + { + "sessionId": "155b0b6d-da42-4333-b3f0-be10f238e3ae", + "createMs": 358.18, + "connectMs": 232.79, + "taskMs": 3941.29, + "actionsCompleted": 20, + "actionsPerSecond": 5.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 76.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 203.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 266.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 356.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.2, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 146.52, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 131.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 604.66, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.42, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 204.72, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 312.9, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 228.78, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.8, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 131.25, + "success": true + } + ] + }, + { + "sessionId": "29b07b76-2e80-42c9-ab99-fb16b5037d4b", + "createMs": 381.87, + "connectMs": 234.66, + "taskMs": 5123.44, + "actionsCompleted": 20, + "actionsPerSecond": 3.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1093.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 76.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 396.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 552.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 414.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 86.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.29, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 198.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 156.02, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 218.76, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.05, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 376.22, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 476.16, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 369.98, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 66.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 207.85, + "success": true + } + ] + }, + { + "sessionId": "8c7964f8-cbe7-4b77-8b1d-d35119e85137", + "createMs": 404.58, + "connectMs": 263.81, + "taskMs": 3959.3, + "actionsCompleted": 20, + "actionsPerSecond": 5.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 70.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 374.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 297.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 419.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.84, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 57.3, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 233.4, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 276.06, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 230.6, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.16, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.26, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 200.35, + "success": true + } + ] + }, + { + "sessionId": "90486b0f-e24d-4d94-a8f0-c8fcdf09f540", + "createMs": 404.51, + "connectMs": 259.94, + "taskMs": 3483.89, + "actionsCompleted": 20, + "actionsPerSecond": 5.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 190.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 232.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 350.93, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 211.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 309.14, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 59.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 206.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.46, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 215.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 264.02, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 167.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.48, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 181.04, + "success": true + } + ] + }, + { + "sessionId": "fc5f2c91-9546-487f-a35e-d01f93758ede", + "createMs": 378.19, + "connectMs": 233.3, + "taskMs": 3393.83, + "actionsCompleted": 20, + "actionsPerSecond": 5.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 642.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 216.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 270.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 238.07, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 148.39, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 213.57, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.97, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 223.3, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 168.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 213.05, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.06, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 35.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 252.29, + "success": true + } + ] + }, + { + "sessionId": "eac7d76d-735c-4e6a-a4fa-2a7fa8479da0", + "createMs": 405.29, + "connectMs": 270.52, + "taskMs": 3883.29, + "actionsCompleted": 20, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 818.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 96.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 236.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 387.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 303.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 203.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 238.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 371.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 63.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 212.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.72, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 207.93, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 223.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 189.63, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.81, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 231, + "success": true + } + ] + }, + { + "sessionId": "0090b4a5-f4b5-49eb-ad5c-b4fc6bbc7671", + "createMs": 405.34, + "connectMs": 368.19, + "taskMs": 5658.27, + "actionsCompleted": 20, + "actionsPerSecond": 3.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1089.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 317.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 291.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 750.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 411.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.74, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 449.74, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 70.12, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 249.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 308.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 617.55, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 392.87, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.29, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.46, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 257.31, + "success": true + } + ] + }, + { + "sessionId": "3d9eb8e6-ad80-420a-ad86-a36d1bc46581", + "createMs": 381.7, + "connectMs": 233.1, + "taskMs": 3757.76, + "actionsCompleted": 20, + "actionsPerSecond": 5.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 590.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 68.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 307.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 280.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 420.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 260.49, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 72.94, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 158.74, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 297.93, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 306.4, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 308.43, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.87, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 28.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 202.37, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 438.06, + "p95": 438.06, + "p99": 438.06, + "samples": 1 + }, + "connectMs": { + "median": 369.26, + "p95": 369.26, + "p99": 369.26, + "samples": 1 + }, + "taskMs": { + "median": 5659.93, + "p95": 5659.93, + "p99": 5659.93, + "samples": 1 + }, + "loopMs": { + "median": 1961.64, + "p95": 3042.32, + "p99": 3042.32, + "samples": 20 + }, + "actionsPerSecond": { + "median": 35.34, + "p95": 35.34, + "p99": 35.34, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.11, + "p95": 6.22, + "p99": 6.22, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 516.77, + "p95": 1089.21, + "p99": 1089.21, + "samples": 20 + }, + "waitForSelector": { + "median": 184.5, + "p95": 312.9, + "p99": 476.16, + "samples": 60 + }, + "screenshot": { + "median": 236.17, + "p95": 414.06, + "p99": 419.64, + "samples": 40 + }, + "textContent": { + "median": 5.4, + "p95": 8.29, + "p99": 9.41, + "samples": 40 + }, + "click": { + "median": 283.99, + "p95": 387.72, + "p99": 387.72, + "samples": 20 + }, + "goBack": { + "median": 39.64, + "p95": 66.08, + "p99": 66.08, + "samples": 20 + } + } + }, + "compositeScore": 90.89, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 346.46, + "connectMs": 335.03, + "taskMs": 6756.54, + "releaseMs": 121.41, + "totalMs": 7589.74, + "aggregateActionsPerSecond": 29.6, + "sessions": [ + { + "sessionId": "c680796f-0466-4f0d-945c-44d894bf66da", + "createMs": 247.99, + "connectMs": 137.12, + "taskMs": 4806.9, + "actionsCompleted": 20, + "actionsPerSecond": 4.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 659.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 445.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 634.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 386.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 230.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 268.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.25, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 576.78, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 292.59, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 236.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.88, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.32, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 123.37, + "success": true + } + ] + }, + { + "sessionId": "69ce40bc-afd2-4540-91c6-0f39018d4168", + "createMs": 243.4, + "connectMs": 188.31, + "taskMs": 4586.52, + "actionsCompleted": 20, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 539.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 317.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 594.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 216.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 196.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.48, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 21.42, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 595.44, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 250.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 209.36, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 22.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 51.45, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 161.71, + "success": true + } + ] + }, + { + "sessionId": "dec8c0e9-3f77-4004-a900-4a884467f4c1", + "createMs": 255.58, + "connectMs": 183.45, + "taskMs": 4816.55, + "actionsCompleted": 20, + "actionsPerSecond": 4.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 533.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 499.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 562.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 412.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 291.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 151.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 212.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 245.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 18.11, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 524.09, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 329.13, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 311.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.81, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 47.66, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 157.99, + "success": true + } + ] + }, + { + "sessionId": "10aa6fe6-c2cd-4686-b1c4-2e6f7634b1bc", + "createMs": 243.07, + "connectMs": 222.45, + "taskMs": 5973.42, + "actionsCompleted": 20, + "actionsPerSecond": 3.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 636.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 234.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 753.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 820.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.12, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 237.97, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 208.8, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 267.17, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 20.34, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 701.32, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 694.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 25.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 49.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 161.67, + "success": true + } + ] + }, + { + "sessionId": "e062d1d1-f9c2-4e9f-bf65-ca0e028c124b", + "createMs": 253.47, + "connectMs": 216.5, + "taskMs": 5322.2, + "actionsCompleted": 20, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 483.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 264.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 854.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 479.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 243.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.97, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 224.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 190.68, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 240.07, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 956.17, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 357.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 273.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.48, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 46.4, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.98, + "success": true + } + ] + }, + { + "sessionId": "1317539e-06d5-4b1e-a9f8-ff85ab5b0308", + "createMs": 303.79, + "connectMs": 277.14, + "taskMs": 5427.28, + "actionsCompleted": 20, + "actionsPerSecond": 3.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 591.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.6, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 286.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 861.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 443.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.22, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 226.81, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 214.34, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 281.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 23.27, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 736.45, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 338, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 317.81, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 26.74, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 73.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 179.52, + "success": true + } + ] + }, + { + "sessionId": "2840d5e3-49ba-4b4b-86c9-d105a79446f8", + "createMs": 257.89, + "connectMs": 246.07, + "taskMs": 4567.04, + "actionsCompleted": 20, + "actionsPerSecond": 4.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 741.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 176.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 688.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 326.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.69, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 247.42, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.76, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 252.89, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.38, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 577.96, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 236.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 263.35, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 17.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.58, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 134.26, + "success": true + } + ] + }, + { + "sessionId": "902eae36-fbdf-4aeb-9f73-d5da062a9be9", + "createMs": 341.56, + "connectMs": 299.32, + "taskMs": 5250.25, + "actionsCompleted": 20, + "actionsPerSecond": 3.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 794.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 260.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 293.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 773.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 396.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.91, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 203.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 236.52, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 252.84, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 21.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 633.5, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 275.06, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 278.5, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 63.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 199.13, + "success": true + } + ] + }, + { + "sessionId": "316e20cc-4488-455e-bed0-3ef9d76e6243", + "createMs": 344.93, + "connectMs": 265.94, + "taskMs": 5377.28, + "actionsCompleted": 20, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 214.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 504.7, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 795.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 267.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.88, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 284.1, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 170.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 285.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.31, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 496.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 593.91, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 397.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 20.05, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 41.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 116.88, + "success": true + } + ] + }, + { + "sessionId": "263f7234-c9f6-426a-8a3a-1f1c50fb4c66", + "createMs": 247.89, + "connectMs": 334.05, + "taskMs": 6755.02, + "actionsCompleted": 20, + "actionsPerSecond": 2.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 775.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 483.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 819.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 574.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 214.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 207.6, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 378.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 22.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 818.5, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 454.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 677.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 23.65, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 61.43, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 173.99, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 346.46, + "p95": 346.46, + "p99": 346.46, + "samples": 1 + }, + "connectMs": { + "median": 335.03, + "p95": 335.03, + "p99": 335.03, + "samples": 1 + }, + "taskMs": { + "median": 6756.54, + "p95": 6756.54, + "p99": 6756.54, + "samples": 1 + }, + "loopMs": { + "median": 2643.52, + "p95": 3302.98, + "p99": 3302.98, + "samples": 20 + }, + "actionsPerSecond": { + "median": 29.6, + "p95": 29.6, + "p99": 29.6, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.78, + "p95": 4.38, + "p99": 4.38, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 383.77, + "p95": 775.55, + "p99": 775.55, + "samples": 20 + }, + "waitForSelector": { + "median": 214.61, + "p95": 499.5, + "p99": 593.91, + "samples": 60 + }, + "screenshot": { + "median": 270.7, + "p95": 378.98, + "p99": 397.67, + "samples": 40 + }, + "textContent": { + "median": 20.2, + "p95": 24.13, + "p99": 25.02, + "samples": 40 + }, + "click": { + "median": 661.64, + "p95": 861.34, + "p99": 861.34, + "samples": 20 + }, + "goBack": { + "median": 48.58, + "p95": 63.08, + "p99": 63.08, + "samples": 20 + } + } + }, + "compositeScore": 88.89, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 465.42, + "connectMs": 190.68, + "taskMs": 7920.91, + "releaseMs": 131.83, + "totalMs": 8726.72, + "aggregateActionsPerSecond": 25.25, + "sessions": [ + { + "sessionId": "43127471-cadd-4f7c-af44-1d13f6a4d762", + "createMs": 463.57, + "connectMs": 147.74, + "taskMs": 5233.66, + "actionsCompleted": 20, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 833.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 434.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 517.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 301.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 151.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 189.81, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 332.29, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 153.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 444.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.63, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 465.09, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 327.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 322.15, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 143.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 149.09, + "success": true + } + ] + }, + { + "sessionId": "5e29c853-ff57-4cae-8d5c-65ec80dd8e05", + "createMs": 297.23, + "connectMs": 181.64, + "taskMs": 4911.13, + "actionsCompleted": 20, + "actionsPerSecond": 4.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 463.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 275.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 119.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.3, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 294.29, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 211.04, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 421.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 461.22, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 233.66, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 334.2, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.47, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 138.84, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 141.05, + "success": true + } + ] + }, + { + "sessionId": "aa03fcc3-a56f-4254-8c42-96fb6cb46f60", + "createMs": 457.14, + "connectMs": 186.43, + "taskMs": 5037.09, + "actionsCompleted": 20, + "actionsPerSecond": 3.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 673.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 344.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 447.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 574.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 102.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.73, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 241, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 202.69, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 339.94, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.86, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 460.23, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 276.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 397.86, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 89.69, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 173.05, + "success": true + } + ] + }, + { + "sessionId": "b666f499-c439-4700-9469-bd29b1124859", + "createMs": 354.9, + "connectMs": 184.56, + "taskMs": 7918.42, + "actionsCompleted": 20, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 893.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 105.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 411, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 525.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1445.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 502.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 215.62, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 281.15, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 260.89, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 362.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 557.29, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 920.2, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 787.12, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.67, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 199.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 252.06, + "success": true + } + ] + }, + { + "sessionId": "aaf64415-42ea-4e62-909b-fd376c65e3fa", + "createMs": 334.05, + "connectMs": 180.19, + "taskMs": 6102.79, + "actionsCompleted": 20, + "actionsPerSecond": 3.28, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 810.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 113.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 437.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 645.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 507.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 448.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.28, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 298.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 180.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 377.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.53, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 721.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 438.67, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 514.94, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 97.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.51, + "success": true + } + ] + }, + { + "sessionId": "1023baf2-6613-4de5-b346-c189032d77af", + "createMs": 443.77, + "connectMs": 185.89, + "taskMs": 5114.5, + "actionsCompleted": 20, + "actionsPerSecond": 3.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 682.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 448.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 482.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 370.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 119.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 162.4, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 346.29, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.23, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 435.71, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 392.42, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 392.19, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.09, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 107.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 155.69, + "success": true + } + ] + }, + { + "sessionId": "14e81c09-b991-47d0-973f-0c42cd75e55e", + "createMs": 289.27, + "connectMs": 177.33, + "taskMs": 4846.23, + "actionsCompleted": 20, + "actionsPerSecond": 4.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 99.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 409.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 115.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.82, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 288.5, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 207.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 355.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.37, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 436.52, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 303.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 340.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.28, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 106.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 134.66, + "success": true + } + ] + }, + { + "sessionId": "65e66038-616e-453b-8b05-e387e388c7f0", + "createMs": 437.92, + "connectMs": 190.18, + "taskMs": 6022.14, + "actionsCompleted": 20, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 519.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 314.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.29, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 297.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 191.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 338.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 373.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 285.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 272.69, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.21, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 100.32, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1432.36, + "success": true + } + ] + }, + { + "sessionId": "18853d54-9d44-4617-8dc5-72064f83679e", + "createMs": 429.27, + "connectMs": 182.4, + "taskMs": 7150.46, + "actionsCompleted": 20, + "actionsPerSecond": 2.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 812.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 404.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 473.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1114.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 513, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 223.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 303.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 221.02, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 422.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 442.37, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 952.68, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 564.7, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.39, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 159.33, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 175, + "success": true + } + ] + }, + { + "sessionId": "4da2dde4-c357-4e33-a16d-e3ff056cbb4f", + "createMs": 395.22, + "connectMs": 183.86, + "taskMs": 5784.42, + "actionsCompleted": 20, + "actionsPerSecond": 3.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 646.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 511.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 625.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 542.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 242.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 212.23, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 181.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 327.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.59, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 430, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 546.22, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 425.44, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 151.44, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 211.29, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 465.42, + "p95": 465.42, + "p99": 465.42, + "samples": 1 + }, + "connectMs": { + "median": 190.68, + "p95": 190.68, + "p99": 190.68, + "samples": 1 + }, + "taskMs": { + "median": 7920.91, + "p95": 7920.91, + "p99": 7920.91, + "samples": 1 + }, + "loopMs": { + "median": 2826.28, + "p95": 3836.17, + "p99": 3836.17, + "samples": 20 + }, + "actionsPerSecond": { + "median": 25.25, + "p95": 25.25, + "p99": 25.25, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.64, + "p95": 4.13, + "p99": 4.13, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 489.58, + "p95": 833.49, + "p99": 833.49, + "samples": 20 + }, + "waitForSelector": { + "median": 204.95, + "p95": 546.22, + "p99": 952.68, + "samples": 60 + }, + "screenshot": { + "median": 400.98, + "p95": 514.94, + "p99": 564.7, + "samples": 40 + }, + "textContent": { + "median": 12.35, + "p95": 19.67, + "p99": 20.89, + "samples": 40 + }, + "click": { + "median": 464.07, + "p95": 645.25, + "p99": 645.25, + "samples": 20 + }, + "goBack": { + "median": 120.13, + "p95": 159.33, + "p99": 159.33, + "samples": 20 + } + } + }, + "compositeScore": 88.06, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 411.65, + "connectMs": 160.3, + "taskMs": 3654.93, + "releaseMs": 50.15, + "totalMs": 4288.26, + "aggregateActionsPerSecond": 54.72, + "sessions": [ + { + "sessionId": "xi6flq28re9i7kihfeqygolh", + "createMs": 277.44, + "connectMs": 61.32, + "taskMs": 2621.7, + "actionsCompleted": 20, + "actionsPerSecond": 7.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 499.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 241.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 128.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 253.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 31.24, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 168.36, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 89.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 191.57, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.94, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 173.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 111.83, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 266.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 32.5, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 37.96, + "success": true + } + ] + }, + { + "sessionId": "m1vyic726c2mhiykccrywdcg", + "createMs": 410.55, + "connectMs": 105.68, + "taskMs": 3654.15, + "actionsCompleted": 20, + "actionsPerSecond": 5.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 885.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 271.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 503.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 145.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 195.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 167.59, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 127.08, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 223.4, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 10.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 335.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 136.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 222.14, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.83, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.29, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 81.91, + "success": true + } + ] + }, + { + "sessionId": "rfsqd0y0hbdywuzylbcm5ie5", + "createMs": 284.5, + "connectMs": 114.14, + "taskMs": 2396.4, + "actionsCompleted": 20, + "actionsPerSecond": 8.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 294.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 125.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 347.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 150.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 255.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 36.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 131.8, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.7, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 183.37, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 147.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 105.34, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 237.08, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.92, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 25.83, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 38.76, + "success": true + } + ] + }, + { + "sessionId": "knmse2rfy3acfg3qfizz4kgz", + "createMs": 278.02, + "connectMs": 63.51, + "taskMs": 3406.91, + "actionsCompleted": 20, + "actionsPerSecond": 5.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 288.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 179.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 298.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 505.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 91.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 135.62, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 93.32, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 146.2, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 272.1, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 500.69, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 280.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 48.07, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 72.59, + "success": true + } + ] + }, + { + "sessionId": "fwkw379hz0qm1ekuqkol5klw", + "createMs": 306.17, + "connectMs": 87.64, + "taskMs": 2615.79, + "actionsCompleted": 20, + "actionsPerSecond": 7.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 240.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 201.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 320.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 26.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 48.69, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 45.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 226.39, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 210.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 165.43, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 265.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.05, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.03, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 45.68, + "success": true + } + ] + }, + { + "sessionId": "hvprjy9s3e9bbdsfssx2aq8j", + "createMs": 311.34, + "connectMs": 67.21, + "taskMs": 2665.07, + "actionsCompleted": 20, + "actionsPerSecond": 7.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 437.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 118.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 306.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 200.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 207.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 18.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 44.36, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 148.31, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 91.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 180.06, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 183.74, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 88.36, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 395.58, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 20.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 37.7, + "success": true + } + ] + }, + { + "sessionId": "rtoffba6v0zghjamsdvphd2l", + "createMs": 280.59, + "connectMs": 72.76, + "taskMs": 2383.88, + "actionsCompleted": 20, + "actionsPerSecond": 8.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 351.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 214.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 490.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 84.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 23.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 35.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 89.68, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 49.45, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 207.73, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 183.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 82.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 203.68, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 24.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 32.42, + "success": true + } + ] + }, + { + "sessionId": "boadw4fvrphj4sj9bg55lodr", + "createMs": 334.79, + "connectMs": 159.81, + "taskMs": 3030.91, + "actionsCompleted": 20, + "actionsPerSecond": 6.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 500.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 101.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 241.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 300.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 165.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 86.91, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 218.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 123.74, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 219.61, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 8.6, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 262.57, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 133.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 228.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 32.66, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 74.44, + "success": true + } + ] + }, + { + "sessionId": "hjkk4pihm7dbmxa9zs9pcypc", + "createMs": 305.88, + "connectMs": 118.41, + "taskMs": 3478.49, + "actionsCompleted": 20, + "actionsPerSecond": 5.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 384.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 142.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 250.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 226.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 480.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 66.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 180.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 58.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 249.28, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.11, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 258.01, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 434.21, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 282.17, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 64.65, + "success": true + } + ] + }, + { + "sessionId": "kyohf6dg03ptfwrm9tytgp5c", + "createMs": 295.3, + "connectMs": 126.9, + "taskMs": 2354.78, + "actionsCompleted": 20, + "actionsPerSecond": 8.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 312.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 229.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 177.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 21.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 108.02, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 47.31, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 177.25, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.67, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 216.13, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 202.95, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 189.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.42, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 25.37, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 35.38, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 411.65, + "p95": 411.65, + "p99": 411.65, + "samples": 1 + }, + "connectMs": { + "median": 160.3, + "p95": 160.3, + "p99": 160.3, + "samples": 1 + }, + "taskMs": { + "median": 3654.93, + "p95": 3654.93, + "p99": 3654.93, + "samples": 1 + }, + "loopMs": { + "median": 1448.45, + "p95": 1907.94, + "p99": 1907.94, + "samples": 20 + }, + "actionsPerSecond": { + "median": 54.72, + "p95": 54.72, + "p99": 54.72, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.57, + "p95": 8.49, + "p99": 8.49, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 248.74, + "p95": 500.37, + "p99": 500.37, + "samples": 20 + }, + "waitForSelector": { + "median": 91.29, + "p95": 201.36, + "p99": 434.21, + "samples": 60 + }, + "screenshot": { + "median": 222.77, + "p95": 282.17, + "p99": 311.68, + "samples": 40 + }, + "textContent": { + "median": 3.87, + "p95": 9.72, + "p99": 9.83, + "samples": 40 + }, + "click": { + "median": 249.78, + "p95": 490.2, + "p99": 490.2, + "samples": 20 + }, + "goBack": { + "median": 30.18, + "p95": 40.29, + "p99": 40.29, + "samples": 20 + } + } + }, + "compositeScore": 94.57, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 5, + "createMs": 2538.8, + "connectMs": 4117.31, + "taskMs": 175289.43, + "releaseMs": 6360.56, + "totalMs": 189902.52, + "aggregateActionsPerSecond": 0.53, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "86e2c30c-3dcb-4043-8268-ac0d3af4c619", + "createMs": 1865.13, + "connectMs": 4116.88, + "taskMs": 152744.94, + "actionsCompleted": 20, + "actionsPerSecond": 0.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1862.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4551, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 14083.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4287.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 20148.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3546.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 12325.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1195.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1687.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 13744.99, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1367.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3914.82, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 20979.08, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 407.86, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 21476.23, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 9416.08, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 12384.28, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 433.75, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1910.34, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3021.31, + "success": true + } + ] + }, + { + "sessionId": "a06933ce-02e5-4dd6-afb6-2f02961d6520", + "createMs": 957.85, + "connectMs": 2719.21, + "taskMs": 116359.79, + "actionsCompleted": 14, + "actionsPerSecond": 0.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1692.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5157.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 7814.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 949.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 30001.49, + "success": false, + "error": "Action timed out" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 11, + "type": "navigate", + "durationMs": 3810.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 8414.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3895.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 417.49, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 22143.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 5290.73, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 18740.54, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 1759.42, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2247.01, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4024.83, + "success": true + } + ] + }, + { + "sessionId": "dcda49a0-dcd2-4b73-9899-706194be2c5e", + "createMs": 1869.77, + "connectMs": 2160.62, + "taskMs": 124181.01, + "actionsCompleted": 20, + "actionsPerSecond": 0.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2810.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6470.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5124.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 411.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16844.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 7246.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 8584.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 469.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1861.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5363.82, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1522.35, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 6320.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 7622.58, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 462.32, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 17459.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 6713.68, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 24219.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 419.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 937.49, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3315.95, + "success": true + } + ] + }, + { + "sessionId": "44869d40-64e9-4e8e-87f2-60f2615ac360", + "createMs": 924.18, + "connectMs": 2111.53, + "taskMs": 175287.95, + "actionsCompleted": 19, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2326.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4832.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 15840.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 427.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 22384.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3841.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 14078.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 417.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1652.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5287.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1339.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4184.48, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 30000.93, + "success": false, + "error": "Action timed out" + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6875.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 22763.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4342.25, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 22933.72, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 941.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2692.13, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 8125.89, + "success": true + } + ] + }, + { + "sessionId": "6863943e-19b9-476c-8103-9705af1239c8", + "createMs": 2536.61, + "connectMs": 2114.37, + "taskMs": 114869.62, + "actionsCompleted": 20, + "actionsPerSecond": 0.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2177.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3126.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6529.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 420.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24114.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4377.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4441.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 955.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1261.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5702.62, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 925.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 4794.67, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4854.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 1065.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 28201.1, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4086.21, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 12097.91, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 404.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 996.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4336.42, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 2, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2538.8, + "p95": 2538.8, + "p99": 2538.8, + "samples": 1 + }, + "connectMs": { + "median": 4117.31, + "p95": 4117.31, + "p99": 4117.31, + "samples": 1 + }, + "taskMs": { + "median": 152744.94, + "p95": 152744.94, + "p99": 152744.94, + "samples": 1 + }, + "loopMs": { + "median": 65377.35, + "p95": 77433.21, + "p99": 77433.21, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.53, + "p95": 0.53, + "p99": 0.53, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.13, + "p95": 0.17, + "p99": 0.17, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1777.76, + "p95": 3810.27, + "p99": 3810.27, + "samples": 10 + }, + "waitForSelector": { + "median": 4813.72, + "p95": 8414.61, + "p99": 9416.08, + "samples": 28 + }, + "screenshot": { + "median": 12211.87, + "p95": 24219.73, + "p99": 24219.73, + "samples": 18 + }, + "textContent": { + "median": 462.32, + "p95": 6875.44, + "p99": 6875.44, + "samples": 19 + }, + "click": { + "median": 22143.65, + "p95": 28201.1, + "p99": 28201.1, + "samples": 9 + }, + "goBack": { + "median": 1687.49, + "p95": 2692.13, + "p99": 2692.13, + "samples": 9 + } + } + }, + "compositeScore": 10.95, + "successRate": 0.3, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 5, + "createMs": 7022.85, + "connectMs": 535.97, + "taskMs": 15514.94, + "releaseMs": 1067.78, + "totalMs": 24214.4, + "aggregateActionsPerSecond": 6.45, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "769590e5-f37b-44d5-bf81-589efd2c49c2", + "createMs": 1087.03, + "connectMs": 499.86, + "taskMs": 13094.64, + "actionsCompleted": 20, + "actionsPerSecond": 1.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 419.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 585.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 715.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 62.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1926.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2710.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 707.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 62.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 507.67, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 229.89, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 491.5, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 687.42, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 66.68, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1910.97, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 505.32, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 623.38, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 62.15, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 142.39, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 532.69, + "success": true + } + ] + }, + { + "sessionId": "28d6a8a7-76fd-42f1-8767-d0ab9f4c0756", + "createMs": 1089.7, + "connectMs": 485.25, + "taskMs": 12911.99, + "actionsCompleted": 20, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 619.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 713.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 66.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1734.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 518.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2903.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 67.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 147.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 598.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 201.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 719.8, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 669.59, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 75.27, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1698.24, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 515.99, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 631.3, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 78.26, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 155.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 516.27, + "success": true + } + ] + }, + { + "sessionId": "b5d4898d-b1d0-4821-9d3f-45d942a595f2", + "createMs": 1080.42, + "connectMs": 436.53, + "taskMs": 11926.46, + "actionsCompleted": 20, + "actionsPerSecond": 1.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 344.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 535.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 654.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 67.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1531.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 494.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2805.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 529.33, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 242.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 462.93, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 620.25, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 58.62, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1549.34, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 467.79, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 696.06, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 59.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 135.45, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 462.65, + "success": true + } + ] + }, + { + "sessionId": "715e41b1-dee1-4c3e-b9fd-aed99e69a21e", + "createMs": 1048.55, + "connectMs": 383.72, + "taskMs": 12869.12, + "actionsCompleted": 20, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 499.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 524.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 613.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1817.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2914.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 687.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 130.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 436.93, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 228.84, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 419.64, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 593.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1785.31, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 807.18, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 624.25, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 58.18, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 132.18, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 431.98, + "success": true + } + ] + }, + { + "sessionId": "21982a13-d597-4059-b68d-9b3cfc163478", + "createMs": 1094.37, + "connectMs": 535.23, + "taskMs": 15513.18, + "actionsCompleted": 20, + "actionsPerSecond": 1.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 348.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 602.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 716.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 62.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 5277.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 582.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 704.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 155.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 495.39, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 200.87, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 484.78, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 709.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 62.91, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3190.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 487.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 681.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 64.43, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 136.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 485.38, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 7022.85, + "p95": 7022.85, + "p99": 7022.85, + "samples": 1 + }, + "connectMs": { + "median": 535.97, + "p95": 535.97, + "p99": 535.97, + "samples": 1 + }, + "taskMs": { + "median": 15514.94, + "p95": 15514.94, + "p99": 15514.94, + "samples": 1 + }, + "loopMs": { + "median": 6837.92, + "p95": 9008.64, + "p99": 9008.64, + "samples": 10 + }, + "actionsPerSecond": { + "median": 6.45, + "p95": 6.45, + "p99": 6.45, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.55, + "p95": 1.68, + "p99": 1.68, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 261.19, + "p95": 499.92, + "p99": 499.92, + "samples": 10 + }, + "waitForSelector": { + "median": 516.13, + "p95": 807.18, + "p99": 2710.01, + "samples": 30 + }, + "screenshot": { + "median": 687.42, + "p95": 2805.44, + "p99": 2805.44, + "samples": 20 + }, + "textContent": { + "median": 62.94, + "p95": 75.27, + "p99": 75.27, + "samples": 20 + }, + "click": { + "median": 1801.4, + "p95": 5277.91, + "p99": 5277.91, + "samples": 10 + }, + "goBack": { + "median": 143.23, + "p95": 155.52, + "p99": 155.52, + "samples": 10 + } + } + }, + "compositeScore": 36.96, + "successRate": 0.5, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 10, + "rounds": [ + { + "sessionsAttempted": 10, + "sessionsAlive": 10, + "createMs": 963.11, + "connectMs": 123.55, + "taskMs": 7161.09, + "releaseMs": 130.32, + "totalMs": 8389.19, + "aggregateActionsPerSecond": 27.93, + "sessions": [ + { + "sessionId": "sess_103dbf0421494193beae2eb75e54c337", + "createMs": 639.27, + "connectMs": 116.67, + "taskMs": 4126.73, + "actionsCompleted": 20, + "actionsPerSecond": 4.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 305.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 178.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 471.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 249.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 330.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 107.95, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 304.44, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 187.03, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.75, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 394.42, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 152.2, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 527.71, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 179.79, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 134.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 122.36, + "success": true + } + ] + }, + { + "sessionId": "sess_bbf3e7480f1d44d09dec0436853585ab", + "createMs": 553.83, + "connectMs": 116.35, + "taskMs": 4147.32, + "actionsCompleted": 20, + "actionsPerSecond": 4.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 276.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 219.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 298.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 358.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.12, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 256.26, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 272.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 223.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.04, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 325.21, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 169.03, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 642.17, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 82.51, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 140.5, + "success": true + } + ] + }, + { + "sessionId": "sess_7f346edd97124372a00e4331a7003b74", + "createMs": 717.38, + "connectMs": 123.09, + "taskMs": 3938.59, + "actionsCompleted": 20, + "actionsPerSecond": 5.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 385.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 177.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 208.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 442.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 406.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 166.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.54, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 274.86, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 175.39, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 158.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 19.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 267.81, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 327.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 164.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 69.6, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 499.22, + "success": true + } + ] + }, + { + "sessionId": "sess_0acf4c1c3e98413c8f4f9b8ce88a217c", + "createMs": 688.83, + "connectMs": 116.62, + "taskMs": 5647.7, + "actionsCompleted": 20, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 213.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 161.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 845.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 483.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 196.08, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.54, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 242.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 507.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 85.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 504.19, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 436.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 503.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.07, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 79.37, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 213.84, + "success": true + } + ] + }, + { + "sessionId": "sess_5ec799c0a0cf46da8e391343a3f7a4f1", + "createMs": 601.22, + "connectMs": 115.66, + "taskMs": 4686.1, + "actionsCompleted": 20, + "actionsPerSecond": 4.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 223.08, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 154.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 545.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 616.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 80.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.78, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 298.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 244.29, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 246.65, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.88, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 597.33, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 492.41, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 275.83, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 21.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 84.98, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 119.1, + "success": true + } + ] + }, + { + "sessionId": "sess_d5413adb2326491b9eec49b84e0e9d32", + "createMs": 961.05, + "connectMs": 118.36, + "taskMs": 3327.67, + "actionsCompleted": 20, + "actionsPerSecond": 6.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 325.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 83.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 138.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 435.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 192.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 96.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 295.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.66, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 175.11, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 9.22, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 266.69, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 361.19, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 171.92, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.24, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 53.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 153.47, + "success": true + } + ] + }, + { + "sessionId": "sess_1263720bf9af467fb118b6209f62c613", + "createMs": 625.85, + "connectMs": 119.32, + "taskMs": 3952.74, + "actionsCompleted": 20, + "actionsPerSecond": 5.06, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 220.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 243.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 142.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 411.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 227.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.23, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 295.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 194.95, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 202.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 346.51, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 308.74, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 199.9, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.45, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 50.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 564.42, + "success": true + } + ] + }, + { + "sessionId": "sess_c2bb134c0a93402bbdeff70a796c5f04", + "createMs": 679.6, + "connectMs": 118.75, + "taskMs": 4341.08, + "actionsCompleted": 20, + "actionsPerSecond": 4.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 645.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 276.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 411.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 314.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 112.03, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 355.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 224.03, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 193.23, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 297.28, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 672.22, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 210.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.96, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 57.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 148.19, + "success": true + } + ] + }, + { + "sessionId": "sess_3a9f2100e0f84cff9406324900ed3f10", + "createMs": 512.67, + "connectMs": 120.43, + "taskMs": 7159.3, + "actionsCompleted": 20, + "actionsPerSecond": 2.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 380.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 242.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 320.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 527.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 939.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 778.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 270.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 461.72, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 278.39, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 159.15, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 629.78, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 7.5, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 442.92, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 798.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 620.88, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.93, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 82.61, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.4, + "success": true + } + ] + }, + { + "sessionId": "sess_8af48ff8191e4a878a12286155cf42fa", + "createMs": 716.91, + "connectMs": 116.88, + "taskMs": 4509.57, + "actionsCompleted": 20, + "actionsPerSecond": 4.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 425.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 163.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 521.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 353.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 415.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.1, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 293.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 177.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 167.53, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.1, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 310.26, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1035.02, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 169.48, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.54, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 65.38, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 91.69, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 2 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 963.11, + "p95": 963.11, + "p99": 963.11, + "samples": 1 + }, + "connectMs": { + "median": 123.55, + "p95": 123.55, + "p99": 123.55, + "samples": 1 + }, + "taskMs": { + "median": 7161.09, + "p95": 7161.09, + "p99": 7161.09, + "samples": 1 + }, + "loopMs": { + "median": 2178.91, + "p95": 3205.3, + "p99": 3205.3, + "samples": 20 + }, + "actionsPerSecond": { + "median": 27.93, + "p95": 27.93, + "p99": 27.93, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.71, + "p95": 6.01, + "p99": 6.01, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 297.02, + "p95": 425.55, + "p99": 425.55, + "samples": 20 + }, + "waitForSelector": { + "median": 213.74, + "p95": 616.06, + "p99": 798.75, + "samples": 60 + }, + "screenshot": { + "median": 207.2, + "p95": 620.88, + "p99": 629.78, + "samples": 40 + }, + "textContent": { + "median": 10.4, + "p95": 21.49, + "p99": 23.47, + "samples": 40 + }, + "click": { + "median": 438.79, + "p95": 545.58, + "p99": 545.58, + "samples": 20 + }, + "goBack": { + "median": 66.25, + "p95": 134.56, + "p99": 134.56, + "samples": 20 + } + } + }, + "compositeScore": 89.69, + "successRate": 1, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c25/2026-08-14.json b/results/browser-concurrent/c25/2026-08-14.json new file mode 100644 index 00000000..92c1186e --- /dev/null +++ b/results/browser-concurrent/c25/2026-08-14.json @@ -0,0 +1,9859 @@ +{ + "version": "1.0", + "timestamp": "2026-08-14T18:36:03.252Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 25, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 390.04, + "connectMs": 330.94, + "taskMs": 5067.6, + "releaseMs": 770.75, + "totalMs": 6577.72, + "aggregateActionsPerSecond": 49.33, + "sessions": [ + { + "sessionId": "eb9f3647-adef-4d97-831a-5eefb989b69d", + "createMs": 348.57, + "connectMs": 254.2, + "taskMs": 2066.54, + "actionsCompleted": 10, + "actionsPerSecond": 4.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 607.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 210.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 269.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 279.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 416.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.69, + "success": true + } + ] + }, + { + "sessionId": "ecf5f3dc-74e5-4c5a-a713-76e5d113440a", + "createMs": 389.15, + "connectMs": 301.01, + "taskMs": 3169.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 940.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 96.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 924.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 228.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 360.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.75, + "success": true + } + ] + }, + { + "sessionId": "01516fc7-91df-4226-98d7-beede29d543e", + "createMs": 301.97, + "connectMs": 206.39, + "taskMs": 2655.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 756.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 80.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 302.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 357.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 639.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.63, + "success": true + } + ] + }, + { + "sessionId": "59b8fc25-4f86-443e-99b1-54a5f358fe78", + "createMs": 328.65, + "connectMs": 231.52, + "taskMs": 2439.48, + "actionsCompleted": 10, + "actionsPerSecond": 4.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 718.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 96.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 221.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 289.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 555.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 294.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 209.66, + "success": true + } + ] + }, + { + "sessionId": "4a49c33c-7a52-4bbf-a3e4-af76b81b5a9b", + "createMs": 325.11, + "connectMs": 227.56, + "taskMs": 2659.95, + "actionsCompleted": 10, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 702.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 347.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 607.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 337.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 304.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.78, + "success": true + } + ] + }, + { + "sessionId": "fdab43a6-b7a7-4648-8369-f69589c7172d", + "createMs": 324.47, + "connectMs": 249.3, + "taskMs": 3760.15, + "actionsCompleted": 10, + "actionsPerSecond": 2.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 692.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 788.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1102.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 551.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 221.35, + "success": true + } + ] + }, + { + "sessionId": "abcc5537-02c2-404d-a325-7dfcf8523347", + "createMs": 304.23, + "connectMs": 240.59, + "taskMs": 2417.8, + "actionsCompleted": 10, + "actionsPerSecond": 4.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 747.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 202.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 461.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 226.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.07, + "success": true + } + ] + }, + { + "sessionId": "86554311-f0d2-44e6-a59e-108f38a3e79a", + "createMs": 318.44, + "connectMs": 263.11, + "taskMs": 2436.42, + "actionsCompleted": 10, + "actionsPerSecond": 4.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 707.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 341.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 268.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 441.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 290.33, + "success": true + } + ] + }, + { + "sessionId": "5c95de93-5ef3-4180-ab54-84512cf6dc45", + "createMs": 353.55, + "connectMs": 259.2, + "taskMs": 2353.27, + "actionsCompleted": 10, + "actionsPerSecond": 4.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 712.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 232.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 344.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 461.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.6, + "success": true + } + ] + }, + { + "sessionId": "26f8c779-e581-4e56-ace8-0bd502be8c04", + "createMs": 349.71, + "connectMs": 263.49, + "taskMs": 2211.02, + "actionsCompleted": 10, + "actionsPerSecond": 4.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 489.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 199.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 353.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 388.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 472.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.52, + "success": true + } + ] + }, + { + "sessionId": "9bb8e0c4-8dda-47fa-b119-67cfcf374239", + "createMs": 356.09, + "connectMs": 269.71, + "taskMs": 2668.99, + "actionsCompleted": 10, + "actionsPerSecond": 3.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 790.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 414.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 209.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 493.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 263.12, + "success": true + } + ] + }, + { + "sessionId": "ee2be180-a3ef-4b09-a0d8-f3597343110c", + "createMs": 320.76, + "connectMs": 228.53, + "taskMs": 2023.66, + "actionsCompleted": 10, + "actionsPerSecond": 4.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 534.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 199.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 499.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 209.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.36, + "success": true + } + ] + }, + { + "sessionId": "e2e705ce-84ef-4ff5-8481-6dde76433ccb", + "createMs": 331.57, + "connectMs": 240.98, + "taskMs": 3189.57, + "actionsCompleted": 10, + "actionsPerSecond": 3.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1261.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 142, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 309.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 631.7, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 208.9, + "success": true + } + ] + }, + { + "sessionId": "3431ed38-549c-40f8-bda9-564ba0fc8f5e", + "createMs": 300.3, + "connectMs": 236.03, + "taskMs": 3114.6, + "actionsCompleted": 10, + "actionsPerSecond": 3.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 962.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 303.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 614.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 474.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 420.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.39, + "success": true + } + ] + }, + { + "sessionId": "a2545938-3819-4de6-bdae-6bdea4cc96e0", + "createMs": 355.66, + "connectMs": 272.94, + "taskMs": 5065.77, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1138.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 260.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 420.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1618.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1002.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 154.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 329.6, + "success": true + } + ] + }, + { + "sessionId": "f5c894fe-291f-4f38-8a8c-baa19b2580f8", + "createMs": 321.37, + "connectMs": 245.95, + "taskMs": 2739.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 853.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 336.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 498.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 214.25, + "success": true + } + ] + }, + { + "sessionId": "dbe8541e-b5d3-42e2-9ca9-74062a9a31a9", + "createMs": 312.63, + "connectMs": 235.54, + "taskMs": 2932.51, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 729.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 110.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 309.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 350.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 846.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 375.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.39, + "success": true + } + ] + }, + { + "sessionId": "7080b778-52e9-4282-bb88-e9168ee41e43", + "createMs": 306.08, + "connectMs": 330.01, + "taskMs": 2641.89, + "actionsCompleted": 10, + "actionsPerSecond": 3.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 670.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 440.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 444.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 492.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.5, + "success": true + } + ] + }, + { + "sessionId": "a294215b-35e3-4170-9a4b-42b2ba670d60", + "createMs": 329.1, + "connectMs": 240.96, + "taskMs": 3860.35, + "actionsCompleted": 10, + "actionsPerSecond": 2.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 872.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 281.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1514.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 274.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 521.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 250.55, + "success": true + } + ] + }, + { + "sessionId": "b886b8e4-fda3-4479-9064-cba43f2083a3", + "createMs": 301.32, + "connectMs": 226.41, + "taskMs": 2860.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 730.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 319.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 503.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 485.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 368.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 311.71, + "success": true + } + ] + }, + { + "sessionId": "89500ffc-802c-4f70-a80e-61ac7a88795c", + "createMs": 320.06, + "connectMs": 224.64, + "taskMs": 2478.21, + "actionsCompleted": 10, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 757.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 83.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 546.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 221.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.85, + "success": true + } + ] + }, + { + "sessionId": "3b32166d-f173-4450-914f-1b97eb2eac77", + "createMs": 353.49, + "connectMs": 260.26, + "taskMs": 2316.9, + "actionsCompleted": 10, + "actionsPerSecond": 4.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 619.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 443.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.87, + "success": true + } + ] + }, + { + "sessionId": "cd3e9aec-3f6f-4a32-9489-728067eed09a", + "createMs": 353.11, + "connectMs": 286, + "taskMs": 2637.03, + "actionsCompleted": 10, + "actionsPerSecond": 3.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 977.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.85, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 379.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 265.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.54, + "success": true + } + ] + }, + { + "sessionId": "c6dd3077-bdd3-43df-aae8-b2044c04d66c", + "createMs": 369.93, + "connectMs": 242.87, + "taskMs": 2347.74, + "actionsCompleted": 10, + "actionsPerSecond": 4.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 703.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 480.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 306.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 208.79, + "success": true + } + ] + }, + { + "sessionId": "6f9749b9-6057-4193-be17-a27173dfd23a", + "createMs": 332.08, + "connectMs": 238.77, + "taskMs": 4029.27, + "actionsCompleted": 10, + "actionsPerSecond": 2.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1091.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 94.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 886.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 784.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 459.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 331.91, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 390.04, + "p95": 390.04, + "p99": 390.04, + "samples": 1 + }, + "connectMs": { + "median": 330.94, + "p95": 330.94, + "p99": 330.94, + "samples": 1 + }, + "taskMs": { + "median": 5067.6, + "p95": 5067.6, + "p99": 5067.6, + "samples": 1 + }, + "loopMs": { + "median": 2655.92, + "p95": 3860.35, + "p99": 4029.27, + "samples": 25 + }, + "actionsPerSecond": { + "median": 49.33, + "p95": 49.33, + "p99": 49.33, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.77, + "p95": 4.52, + "p99": 4.84, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 730.19, + "p95": 1091.77, + "p99": 1138.95, + "samples": 25 + }, + "waitForSelector": { + "median": 208.9, + "p95": 498.44, + "p99": 784.46, + "samples": 75 + }, + "screenshot": { + "median": 299.11, + "p95": 492.23, + "p99": 521.62, + "samples": 50 + }, + "textContent": { + "median": 6.99, + "p95": 16.24, + "p99": 19.3, + "samples": 50 + }, + "click": { + "median": 443.43, + "p95": 886.24, + "p99": 924.05, + "samples": 25 + }, + "goBack": { + "median": 40.02, + "p95": 63.84, + "p99": 67.89, + "samples": 25 + } + } + }, + "compositeScore": 88.44, + "successRate": 1, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 624.49, + "connectMs": 565.86, + "taskMs": 5091.17, + "releaseMs": 148.27, + "totalMs": 6490.5, + "aggregateActionsPerSecond": 49.1, + "sessions": [ + { + "sessionId": "847da142-8824-4899-a781-c325ac3fda6b", + "createMs": 295.33, + "connectMs": 184.04, + "taskMs": 3227.08, + "actionsCompleted": 10, + "actionsPerSecond": 3.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.24, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 930.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 458.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 345.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.56, + "success": true + } + ] + }, + { + "sessionId": "682236f0-5da5-4054-b4ca-9f71f2978f53", + "createMs": 622.93, + "connectMs": 202.52, + "taskMs": 3709.83, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 948.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 191.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 501.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1107.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 347.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 364.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.17, + "success": true + } + ] + }, + { + "sessionId": "d9a61113-db68-43b1-9630-9489040c9247", + "createMs": 248.06, + "connectMs": 176.99, + "taskMs": 3012.97, + "actionsCompleted": 10, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 691.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 268.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 863.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 527.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.03, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.62, + "success": true + } + ] + }, + { + "sessionId": "b4880245-5991-4daa-8120-d7273f7a4ab6", + "createMs": 377.76, + "connectMs": 151.88, + "taskMs": 2691.07, + "actionsCompleted": 10, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 568.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 246.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 584.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 568.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.51, + "success": true + } + ] + }, + { + "sessionId": "7da05d72-2220-434a-955c-3d0c5a6a368c", + "createMs": 265.56, + "connectMs": 147.47, + "taskMs": 3028.53, + "actionsCompleted": 10, + "actionsPerSecond": 3.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 602.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 192.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 373.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 903.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 297.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 445.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 144.22, + "success": true + } + ] + }, + { + "sessionId": "0baa2b1f-5f3b-4851-b89f-e45568cc65ee", + "createMs": 537.19, + "connectMs": 207.25, + "taskMs": 4562.19, + "actionsCompleted": 10, + "actionsPerSecond": 2.19, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 689.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 356.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1087.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1586.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 467.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 125.47, + "success": true + } + ] + }, + { + "sessionId": "7ad8d14c-445e-48fc-ae46-3026767ebc46", + "createMs": 343.24, + "connectMs": 225.02, + "taskMs": 3334.63, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 845.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 315.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 909.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 497.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 383.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.51, + "success": true + } + ] + }, + { + "sessionId": "3151cee0-8a68-4116-bb7e-7eadd7bbb566", + "createMs": 385.55, + "connectMs": 215.95, + "taskMs": 2935.13, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 489.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 333.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 711.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 508.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.88, + "success": true + } + ] + }, + { + "sessionId": "60bfb44d-11d6-49f5-b0b9-81685394e00f", + "createMs": 516.88, + "connectMs": 225.17, + "taskMs": 3191.8, + "actionsCompleted": 10, + "actionsPerSecond": 3.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 716.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 197.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 249.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 938.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 549.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 312.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.03, + "success": true + } + ] + }, + { + "sessionId": "5d249cca-cd52-4f3e-810e-74498bb329d7", + "createMs": 418.47, + "connectMs": 220.15, + "taskMs": 2602.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 216.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 290.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 618.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 333.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 144.05, + "success": true + } + ] + }, + { + "sessionId": "6f2e60a8-dc5a-4e3b-b632-3c9ec9cd2538", + "createMs": 416.65, + "connectMs": 217.46, + "taskMs": 2611.51, + "actionsCompleted": 10, + "actionsPerSecond": 3.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 585.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 313.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 262.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 382.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 239.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.17, + "success": true + } + ] + }, + { + "sessionId": "cb1743b4-19bb-4123-a931-20f5d1e6057b", + "createMs": 312.7, + "connectMs": 284.62, + "taskMs": 2978.03, + "actionsCompleted": 10, + "actionsPerSecond": 3.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 720.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 779.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 332.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 204.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 355.17, + "success": true + } + ] + }, + { + "sessionId": "8c8fff3b-d027-48ae-b0a8-9500e5d953ec", + "createMs": 308.82, + "connectMs": 222.32, + "taskMs": 3062.13, + "actionsCompleted": 10, + "actionsPerSecond": 3.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 868.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 160.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 232.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 838.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 420.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 326.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 133.95, + "success": true + } + ] + }, + { + "sessionId": "d1fed8c0-bafd-42a4-8afa-74a166b24bf2", + "createMs": 382.37, + "connectMs": 272.58, + "taskMs": 3415.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 749.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 184.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 837.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 618.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 399.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 145.13, + "success": true + } + ] + }, + { + "sessionId": "53cc5ca8-40e3-4364-93c4-3857411a63b8", + "createMs": 299.08, + "connectMs": 275.62, + "taskMs": 5089.62, + "actionsCompleted": 10, + "actionsPerSecond": 1.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 712.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 202.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 252.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 829.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1210.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1616.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.33, + "success": true + } + ] + }, + { + "sessionId": "44affe00-ac98-44d9-b881-05da4993ffa7", + "createMs": 311.94, + "connectMs": 232.27, + "taskMs": 2916.81, + "actionsCompleted": 10, + "actionsPerSecond": 3.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 205.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 221.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 575.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 591.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 359.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 161.74, + "success": true + } + ] + }, + { + "sessionId": "b734ee19-adf3-49bf-9a43-5e91a29f7ff7", + "createMs": 623.17, + "connectMs": 303.04, + "taskMs": 2950.6, + "actionsCompleted": 10, + "actionsPerSecond": 3.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 598.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 200.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 542.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 313.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.21, + "success": true + } + ] + }, + { + "sessionId": "0291fa45-5d70-4782-b771-d2f77dba58de", + "createMs": 302.81, + "connectMs": 240.14, + "taskMs": 3290.76, + "actionsCompleted": 10, + "actionsPerSecond": 3.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 834.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 611.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 615.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.49, + "success": true + } + ] + }, + { + "sessionId": "a2eb3e30-1d40-4d53-8f3e-93a12976b2cf", + "createMs": 432.87, + "connectMs": 269.54, + "taskMs": 3315.43, + "actionsCompleted": 10, + "actionsPerSecond": 3.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1122.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 304.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 655.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 385.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 298.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.13, + "success": true + } + ] + }, + { + "sessionId": "4120196f-24c7-4e12-ae4a-a3ab73e0e0d4", + "createMs": 433.46, + "connectMs": 309.16, + "taskMs": 3636.33, + "actionsCompleted": 10, + "actionsPerSecond": 2.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 250.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 569.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 865, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 648.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 453.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.48, + "success": true + } + ] + }, + { + "sessionId": "b90c0e57-210e-497e-b333-94f6214fae5d", + "createMs": 296.6, + "connectMs": 243.83, + "taskMs": 3057.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 170.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 959.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 468.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 302.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 117.82, + "success": true + } + ] + }, + { + "sessionId": "83e2faeb-27ca-41f2-96ea-a50828ad8459", + "createMs": 432.64, + "connectMs": 249.08, + "taskMs": 2903.49, + "actionsCompleted": 10, + "actionsPerSecond": 3.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 691, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 239.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 298.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 647.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 402.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 416.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.31, + "success": true + } + ] + }, + { + "sessionId": "dc400ae0-6564-4a8f-ab45-6c7f9e606971", + "createMs": 535.77, + "connectMs": 237.18, + "taskMs": 3064.08, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 751.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 177.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 342.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 712.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 408.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 486.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 123.2, + "success": true + } + ] + }, + { + "sessionId": "ae46db0a-1304-47aa-980f-1c80c0732256", + "createMs": 317.23, + "connectMs": 564.58, + "taskMs": 2636.1, + "actionsCompleted": 10, + "actionsPerSecond": 3.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 202.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.32, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 330.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.65, + "success": true + } + ] + }, + { + "sessionId": "ef5efa05-9818-41ed-bba2-291a5481377f", + "createMs": 309.72, + "connectMs": 268.54, + "taskMs": 4746.17, + "actionsCompleted": 10, + "actionsPerSecond": 2.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 835.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 245, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1448.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 655.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1068.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.85, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 624.49, + "p95": 624.49, + "p99": 624.49, + "samples": 1 + }, + "connectMs": { + "median": 565.86, + "p95": 565.86, + "p99": 565.86, + "samples": 1 + }, + "taskMs": { + "median": 5091.17, + "p95": 5091.17, + "p99": 5091.17, + "samples": 1 + }, + "loopMs": { + "median": 3062.13, + "p95": 4562.19, + "p99": 4746.17, + "samples": 25 + }, + "actionsPerSecond": { + "median": 49.1, + "p95": 49.1, + "p99": 49.1, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.27, + "p95": 3.79, + "p99": 3.83, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 712.32, + "p95": 868.04, + "p99": 948.17, + "samples": 25 + }, + "waitForSelector": { + "median": 202.94, + "p95": 615.45, + "p99": 655.25, + "samples": 75 + }, + "screenshot": { + "median": 322.73, + "p95": 486.58, + "p99": 569.14, + "samples": 50 + }, + "textContent": { + "median": 16.43, + "p95": 25.91, + "p99": 29.02, + "samples": 50 + }, + "click": { + "median": 829.14, + "p95": 1087.52, + "p99": 1107.95, + "samples": 25 + }, + "goBack": { + "median": 44.39, + "p95": 55.12, + "p99": 57.36, + "samples": 25 + } + } + }, + "compositeScore": 86.89, + "successRate": 1, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 790.19, + "connectMs": 980.72, + "taskMs": 45576.91, + "releaseMs": 348.59, + "totalMs": 47819.44, + "aggregateActionsPerSecond": 5.46, + "sessions": [ + { + "sessionId": "12c4ede2-93e9-4997-9e9e-83b4723f0897", + "createMs": 788.44, + "connectMs": 569.71, + "taskMs": 8523.7, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 797.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 646.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 923.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2698.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1155.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1146.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 221.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 786.34, + "success": true + } + ] + }, + { + "sessionId": "81029e3c-6d77-468c-af51-2120ec17bcbe", + "createMs": 633.97, + "connectMs": 686.13, + "taskMs": 14965.19, + "actionsCompleted": 10, + "actionsPerSecond": 0.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2880.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 690.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2019.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 81.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2851.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1776.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2009.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 452.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2125.53, + "success": true + } + ] + }, + { + "sessionId": "b62ecf68-2fea-49c8-bbdb-e4cb81483469", + "createMs": 718.72, + "connectMs": 607.42, + "taskMs": 7171.25, + "actionsCompleted": 10, + "actionsPerSecond": 1.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 659.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 862.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2348.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 711.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 964.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 231.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 576.72, + "success": true + } + ] + }, + { + "sessionId": "098bea88-969b-4535-bf59-67281881e917", + "createMs": 665.31, + "connectMs": 569.73, + "taskMs": 6970.44, + "actionsCompleted": 10, + "actionsPerSecond": 1.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 655.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 715.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 765.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2106.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 961.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 842.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 195.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 579.53, + "success": true + } + ] + }, + { + "sessionId": "be3b834a-0853-4c06-8fc6-b13b8f27744e", + "createMs": 762.44, + "connectMs": 632.6, + "taskMs": 12521.28, + "actionsCompleted": 10, + "actionsPerSecond": 0.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 789.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 655.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4274.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2672.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1130.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1570.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 261.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1018.63, + "success": true + } + ] + }, + { + "sessionId": "84a3730f-1075-4427-b659-6fd99fa24198", + "createMs": 597.76, + "connectMs": 565.76, + "taskMs": 14691.32, + "actionsCompleted": 10, + "actionsPerSecond": 0.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 879.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 647.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 902.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2919.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5788.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1657.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 87.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 310.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1425.95, + "success": true + } + ] + }, + { + "sessionId": "b92304d2-e56a-471a-b38d-eed3c94a91f3", + "createMs": 652.07, + "connectMs": 627.27, + "taskMs": 8064.54, + "actionsCompleted": 10, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 805.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 760.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 924.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 76.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2255.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 821.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1220.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 275.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 850.41, + "success": true + } + ] + }, + { + "sessionId": "5ca2685d-97cd-4bd7-825a-79f837bf3460", + "createMs": 716.08, + "connectMs": 568.67, + "taskMs": 6801.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 620.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 638.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2362.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 637.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 881.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 237.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 550.02, + "success": true + } + ] + }, + { + "sessionId": "d14aa373-cbf9-4561-8d3a-4534074cb543", + "createMs": 761.49, + "connectMs": 607.98, + "taskMs": 7565.77, + "actionsCompleted": 10, + "actionsPerSecond": 1.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 652.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 669.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 953.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 391.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2235.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 753.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1014.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 243.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 577.44, + "success": true + } + ] + }, + { + "sessionId": "d78dc716-060c-4391-aeb9-7311160e5436", + "createMs": 538.15, + "connectMs": 569.21, + "taskMs": 8753.71, + "actionsCompleted": 10, + "actionsPerSecond": 1.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 678.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 695.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 858.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1887.54, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1317.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2127.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 197.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 846.91, + "success": true + } + ] + }, + { + "sessionId": "5d752fb1-e830-4cca-9dc2-7d136930593e", + "createMs": 770.23, + "connectMs": 624.64, + "taskMs": 45574.81, + "actionsCompleted": 9, + "actionsPerSecond": 0.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 5727.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 698.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 30001.68, + "success": false, + "error": "Action timed out" + }, + { + "index": 4, + "type": "textContent", + "durationMs": 215.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2161.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1013.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4456.01, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 252.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 971.57, + "success": true + } + ] + }, + { + "sessionId": "a9fe671e-467c-4e22-ad44-e871ba434d80", + "createMs": 694.02, + "connectMs": 569.92, + "taskMs": 7573.59, + "actionsCompleted": 10, + "actionsPerSecond": 1.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 817.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 640.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 969.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2157.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 901.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 996.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 70.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 241.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 705.68, + "success": true + } + ] + }, + { + "sessionId": "96b4bc73-b947-4374-986d-24f048d88bf3", + "createMs": 410.57, + "connectMs": 626.79, + "taskMs": 8324.25, + "actionsCompleted": 10, + "actionsPerSecond": 1.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1275.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 688.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 942.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2505.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 790.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 819.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 338.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 811.16, + "success": true + } + ] + }, + { + "sessionId": "8111eea2-1df2-4a57-906f-af4e5590ece3", + "createMs": 549.63, + "connectMs": 567.56, + "taskMs": 7610.87, + "actionsCompleted": 10, + "actionsPerSecond": 1.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 769.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 637.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 778.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2644.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 892.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 922.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 225.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 597.35, + "success": true + } + ] + }, + { + "sessionId": "071ff753-83fd-436c-ad15-bb263600af10", + "createMs": 592.94, + "connectMs": 624.05, + "taskMs": 14139.82, + "actionsCompleted": 10, + "actionsPerSecond": 0.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 973.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 654.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 940.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2663.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 6217.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1486.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 90.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 246.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 794.2, + "success": true + } + ] + }, + { + "sessionId": "0a03ab0d-d2b1-4158-a376-6a35c4decd84", + "createMs": 648.28, + "connectMs": 625.67, + "taskMs": 12857.58, + "actionsCompleted": 10, + "actionsPerSecond": 0.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1156.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 688.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3966.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2124.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2152.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1555.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 79.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 250.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 809.47, + "success": true + } + ] + }, + { + "sessionId": "7b4db557-2640-4f28-9204-9ee360fdd355", + "createMs": 587.05, + "connectMs": 979.12, + "taskMs": 8551.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 865.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 684.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1004.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2014.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1659.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1115.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 80.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 245.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 807.5, + "success": true + } + ] + }, + { + "sessionId": "93f1712e-8099-48cc-a2a5-5f49e542a8fb", + "createMs": 424.49, + "connectMs": 605.23, + "taskMs": 7167.16, + "actionsCompleted": 10, + "actionsPerSecond": 1.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 810.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 654.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 835.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1872.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1110.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 910.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 88.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 218.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 597.33, + "success": true + } + ] + }, + { + "sessionId": "f720ce3a-06d7-4aba-b0dd-1a584946404a", + "createMs": 565.25, + "connectMs": 626.44, + "taskMs": 12399.63, + "actionsCompleted": 10, + "actionsPerSecond": 0.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2173.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 986.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2263.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 76.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2656.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1034.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1561.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 311.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1259.53, + "success": true + } + ] + }, + { + "sessionId": "44893baf-3568-4638-9602-d3656c635682", + "createMs": 693.54, + "connectMs": 623.45, + "taskMs": 12099.33, + "actionsCompleted": 10, + "actionsPerSecond": 0.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 799.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 663.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4259.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2468.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1250.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1432.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 244.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 828.53, + "success": true + } + ] + }, + { + "sessionId": "08362870-cd75-4e06-a075-93fc00e5f3de", + "createMs": 688.97, + "connectMs": 641.75, + "taskMs": 9569.57, + "actionsCompleted": 10, + "actionsPerSecond": 1.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 598.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 929.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 981.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3776.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 949.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1209.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 245.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 735.43, + "success": true + } + ] + }, + { + "sessionId": "f9c71588-c142-4165-8be1-a5a1f2d60be3", + "createMs": 609.59, + "connectMs": 624.31, + "taskMs": 8140.68, + "actionsCompleted": 10, + "actionsPerSecond": 1.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 842.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 818.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1049.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 89.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2149.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 775.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1447.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 206.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 687.91, + "success": true + } + ] + }, + { + "sessionId": "49953b75-0127-4db4-9b84-5788163ec094", + "createMs": 396.32, + "connectMs": 563.96, + "taskMs": 8979.41, + "actionsCompleted": 10, + "actionsPerSecond": 1.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 868.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 697.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1338.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2301.7, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 838.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1708.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 235.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 847.79, + "success": true + } + ] + }, + { + "sessionId": "ad288044-8b41-4d75-a9b7-53b5255bcf33", + "createMs": 645.2, + "connectMs": 604.14, + "taskMs": 6893.54, + "actionsCompleted": 10, + "actionsPerSecond": 1.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 933.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 650.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 803.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1894.94, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 670.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 983.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 70.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 274.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 540.75, + "success": true + } + ] + }, + { + "sessionId": "9e0b700b-09cd-42fb-99dd-ed6c57db4864", + "createMs": 617.01, + "connectMs": 608.53, + "taskMs": 11648.39, + "actionsCompleted": 10, + "actionsPerSecond": 0.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2109.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 690.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1061.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 76.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2658.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1618.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1441.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 425.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1490.07, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 790.19, + "p95": 790.19, + "p99": 790.19, + "samples": 1 + }, + "connectMs": { + "median": 980.72, + "p95": 980.72, + "p99": 980.72, + "samples": 1 + }, + "taskMs": { + "median": 14965.19, + "p95": 14965.19, + "p99": 14965.19, + "samples": 1 + }, + "loopMs": { + "median": 8537.57, + "p95": 14139.82, + "p99": 14691.32, + "samples": 24 + }, + "actionsPerSecond": { + "median": 5.46, + "p95": 5.46, + "p99": 5.46, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.17, + "p95": 1.43, + "p99": 1.45, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 817.71, + "p95": 2173.61, + "p99": 2880.99, + "samples": 25 + }, + "waitForSelector": { + "median": 786.34, + "p95": 1618.59, + "p99": 2125.53, + "samples": 75 + }, + "screenshot": { + "median": 1014.72, + "p95": 2263.59, + "p99": 4259.08, + "samples": 49 + }, + "textContent": { + "median": 74.6, + "p95": 88.29, + "p99": 90.37, + "samples": 50 + }, + "click": { + "median": 2348.87, + "p95": 2851.52, + "p99": 2919.14, + "samples": 25 + }, + "goBack": { + "median": 245.18, + "p95": 338.16, + "p99": 425.25, + "samples": 25 + } + } + }, + "compositeScore": 70.4, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 10, + "createMs": 277.01, + "connectMs": 186.74, + "taskMs": 2939.22, + "releaseMs": 46.38, + "totalMs": 3459.78, + "aggregateActionsPerSecond": 34.02, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "hrns8iphqu1xf6zvhc3reqqd", + "createMs": 209.84, + "connectMs": 56.92, + "taskMs": 1371.9, + "actionsCompleted": 10, + "actionsPerSecond": 7.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 324.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 74.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 207.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 186.54, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 240.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 269.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 23.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 37.38, + "success": true + } + ] + }, + { + "sessionId": "gydbb14kv5gwtm4jbosi4x75", + "createMs": 194.96, + "connectMs": 67.66, + "taskMs": 1797.95, + "actionsCompleted": 10, + "actionsPerSecond": 5.56, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 423.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 182.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 241.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 485.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 178.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 173.34, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 50.69, + "success": true + } + ] + }, + { + "sessionId": "z5yhrg2s7uo4s6o61pwmutpy", + "createMs": 256.38, + "connectMs": 138.89, + "taskMs": 2899.13, + "actionsCompleted": 10, + "actionsPerSecond": 3.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 884.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 178.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 669.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 375.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 341.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 94.16, + "success": true + } + ] + }, + { + "sessionId": "oaqcw52oqf6s5nf8z9wrglgo", + "createMs": 195.57, + "connectMs": 121.57, + "taskMs": 1490.89, + "actionsCompleted": 10, + "actionsPerSecond": 6.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 306.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 168.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 198.98, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 315.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 248.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 23.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 57.43, + "success": true + } + ] + }, + { + "sessionId": "gvfq4wc8f4nw9mvlv1b86cnz", + "createMs": 225.37, + "connectMs": 118.17, + "taskMs": 1571.54, + "actionsCompleted": 10, + "actionsPerSecond": 6.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 310.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 221.72, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 355.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 166.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 246.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 59.44, + "success": true + } + ] + }, + { + "sessionId": "q8sp4hfb1c1vwavpa1mq7uq9", + "createMs": 201.58, + "connectMs": 99.92, + "taskMs": 2938.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 284.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 533.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 533.9, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 967.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.12, + "success": true + } + ] + }, + { + "sessionId": "vgwvzykmsupjo0854q0vamjk", + "createMs": 211.32, + "connectMs": 125.91, + "taskMs": 1667.21, + "actionsCompleted": 10, + "actionsPerSecond": 6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 471.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 146.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 246.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 298.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 140.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 241.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 65.23, + "success": true + } + ] + }, + { + "sessionId": "umom21wt0eec5vd28z7aru6v", + "createMs": 214.69, + "connectMs": 118.6, + "taskMs": 1301.15, + "actionsCompleted": 10, + "actionsPerSecond": 7.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 248.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 129.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 174.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 176.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 279.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 39.97, + "success": true + } + ] + }, + { + "sessionId": "jexue7wowvfc4ju9jj38t0b9", + "createMs": 241.49, + "connectMs": 186.33, + "taskMs": 1887.49, + "actionsCompleted": 10, + "actionsPerSecond": 5.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 287.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 154.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 252.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 447.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 299.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 79.75, + "success": true + } + ] + }, + { + "sessionId": "zsoh3cu6ml72xpz4ep927ig9", + "createMs": 200.92, + "connectMs": 133.63, + "taskMs": 1325.22, + "actionsCompleted": 10, + "actionsPerSecond": 7.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 317.25, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 67.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 215.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 134.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 156.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 362.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 19.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.45, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 277.01, + "p95": 277.01, + "p99": 277.01, + "samples": 1 + }, + "connectMs": { + "median": 186.74, + "p95": 186.74, + "p99": 186.74, + "samples": 1 + }, + "taskMs": { + "median": 2939.22, + "p95": 2939.22, + "p99": 2939.22, + "samples": 1 + }, + "loopMs": { + "median": 1619.37, + "p95": 2938.33, + "p99": 2938.33, + "samples": 10 + }, + "actionsPerSecond": { + "median": 34.02, + "p95": 34.02, + "p99": 34.02, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 6.18, + "p95": 7.69, + "p99": 7.69, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 313.74, + "p95": 884.37, + "p99": 884.37, + "samples": 10 + }, + "waitForSelector": { + "median": 155.52, + "p95": 315.12, + "p99": 375.33, + "samples": 30 + }, + "screenshot": { + "median": 243.59, + "p95": 362.09, + "p99": 362.09, + "samples": 20 + }, + "textContent": { + "median": 4.43, + "p95": 19.95, + "p99": 19.95, + "samples": 20 + }, + "click": { + "median": 327.02, + "p95": 669.35, + "p99": 669.35, + "samples": 10 + }, + "goBack": { + "median": 34.03, + "p95": 58.8, + "p99": 58.8, + "samples": 10 + } + } + }, + "compositeScore": 37.34, + "successRate": 0.4, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 7, + "createMs": 1108.01, + "connectMs": 4076.49, + "taskMs": 22560.13, + "releaseMs": 312.09, + "totalMs": 28160.95, + "aggregateActionsPerSecond": 3.1, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "d3407a9d-dd4a-45d6-97e5-c7b59926b6f5", + "createMs": 691.07, + "connectMs": 4076, + "taskMs": 20109.33, + "actionsCompleted": 10, + "actionsPerSecond": 0.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1110.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2224.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2729.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 201.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6672.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1721.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3670.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 167.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 341.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1270.21, + "success": true + } + ] + }, + { + "sessionId": "77423b92-b657-45be-8397-5f30b90e818f", + "createMs": 392.31, + "connectMs": 1844, + "taskMs": 22558.79, + "actionsCompleted": 10, + "actionsPerSecond": 0.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1631.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2101.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3598.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 164.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6497.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3089.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2548.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 167.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 557.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2203.02, + "success": true + } + ] + }, + { + "sessionId": "61cb70a1-81d5-4229-95fe-1b3de02ad3a9", + "createMs": 314.52, + "connectMs": 3811.21, + "taskMs": 18379.29, + "actionsCompleted": 10, + "actionsPerSecond": 0.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 892.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1744.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3483.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 169.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4235.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1531.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3099.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 213.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 609.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2398.85, + "success": true + } + ] + }, + { + "sessionId": "7099875f-b58f-4e83-9cca-44016229f08e", + "createMs": 446.62, + "connectMs": 3520.04, + "taskMs": 19360.34, + "actionsCompleted": 10, + "actionsPerSecond": 0.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1465.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1809.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3620.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 188.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4803.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2198.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3365.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 258.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 541.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1109.3, + "success": true + } + ] + }, + { + "sessionId": "993f130d-9233-4012-827b-66596e309025", + "createMs": 418.28, + "connectMs": 689.99, + "taskMs": 11804.88, + "actionsCompleted": 10, + "actionsPerSecond": 0.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 991.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 865.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1594.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 90.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4781.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 778.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1606.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 92.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 297.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 707.27, + "success": true + } + ] + }, + { + "sessionId": "9a7d6016-e50e-42ec-bf28-fda0e34456cf", + "createMs": 454.28, + "connectMs": 2811.11, + "taskMs": 20210.69, + "actionsCompleted": 10, + "actionsPerSecond": 0.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1276.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1964.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2572.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 197.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6705.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3139.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2400.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 190.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 671.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1092.93, + "success": true + } + ] + }, + { + "sessionId": "bd00fd40-5beb-4f34-8c11-b2cef4dacd49", + "createMs": 542.73, + "connectMs": 686.84, + "taskMs": 9956.77, + "actionsCompleted": 10, + "actionsPerSecond": 1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1049.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 794.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 982.24, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 86.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3946.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1135.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 895.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 84.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 287.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 693.36, + "success": true + } + ] + } + ], + "maxLiveSessions": 7, + "maxConcurrentActions": 7, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 7, + "p95": 7, + "p99": 7, + "samples": 1 + }, + "createMs": { + "median": 1108.01, + "p95": 1108.01, + "p99": 1108.01, + "samples": 1 + }, + "connectMs": { + "median": 4076.49, + "p95": 4076.49, + "p99": 4076.49, + "samples": 1 + }, + "taskMs": { + "median": 22560.13, + "p95": 22560.13, + "p99": 22560.13, + "samples": 1 + }, + "loopMs": { + "median": 19360.34, + "p95": 22558.79, + "p99": 22558.79, + "samples": 7 + }, + "actionsPerSecond": { + "median": 3.1, + "p95": 3.1, + "p99": 3.1, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.52, + "p95": 1, + "p99": 1, + "samples": 7 + }, + "perActionType": { + "navigate": { + "median": 1110.55, + "p95": 1631.52, + "p99": 1631.52, + "samples": 7 + }, + "waitForSelector": { + "median": 1721.84, + "p95": 3089.16, + "p99": 3089.16, + "samples": 21 + }, + "screenshot": { + "median": 2651.05, + "p95": 3670.42, + "p99": 3670.42, + "samples": 14 + }, + "textContent": { + "median": 168.77, + "p95": 258.27, + "p99": 258.27, + "samples": 14 + }, + "click": { + "median": 4803.34, + "p95": 6705.1, + "p99": 6705.1, + "samples": 7 + }, + "goBack": { + "median": 541.79, + "p95": 671.24, + "p99": 671.24, + "samples": 7 + } + } + }, + "compositeScore": 16.53, + "successRate": 0.28, + "sessionCeiling": 7, + "concurrencyAchieved": 7, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 5, + "createMs": 9508.58, + "connectMs": 2417.17, + "taskMs": 7380.31, + "releaseMs": 631.13, + "totalMs": 20008.7, + "aggregateActionsPerSecond": 6.77, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "e16430a2-d0ae-45cc-8d7c-17c30c7b57a1", + "createMs": 1148.68, + "connectMs": 485.15, + "taskMs": 5827.05, + "actionsCompleted": 10, + "actionsPerSecond": 1.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 425.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 482.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 562.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2281.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 517.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 948.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 49.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 109.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 399.77, + "success": true + } + ] + }, + { + "sessionId": "2939baf3-5306-4f1f-b82e-5bbe336539c4", + "createMs": 4041.37, + "connectMs": 1564.94, + "taskMs": 7378.88, + "actionsCompleted": 10, + "actionsPerSecond": 1.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 572.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 571.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1061.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 56.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3194.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 555.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 723.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 135.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 457.06, + "success": true + } + ] + }, + { + "sessionId": "0f456e99-3b87-4f57-bde1-fd96c034ff4d", + "createMs": 1131.6, + "connectMs": 1322.34, + "taskMs": 5594.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 495.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 550.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 694.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1497.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 792.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 663.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 267.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 451.82, + "success": true + } + ] + }, + { + "sessionId": "dba16e5d-8035-425c-a857-c3053262932a", + "createMs": 1826.88, + "connectMs": 2416.39, + "taskMs": 5916.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 663.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 529.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 636.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1626.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1126.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 676.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 420.08, + "success": true + } + ] + }, + { + "sessionId": "505ca2e8-cad7-4513-a98b-a94b4ac6b20a", + "createMs": 1655.68, + "connectMs": 497.28, + "taskMs": 6280.68, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 346, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 806.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 790.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 314.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2153.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 488.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 719.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 150.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 452.58, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 9508.58, + "p95": 9508.58, + "p99": 9508.58, + "samples": 1 + }, + "connectMs": { + "median": 2417.17, + "p95": 2417.17, + "p99": 2417.17, + "samples": 1 + }, + "taskMs": { + "median": 7380.31, + "p95": 7380.31, + "p99": 7380.31, + "samples": 1 + }, + "loopMs": { + "median": 5916.06, + "p95": 7378.88, + "p99": 7378.88, + "samples": 5 + }, + "actionsPerSecond": { + "median": 6.77, + "p95": 6.77, + "p99": 6.77, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.69, + "p95": 1.79, + "p99": 1.79, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 495.97, + "p95": 663.73, + "p99": 663.73, + "samples": 5 + }, + "waitForSelector": { + "median": 517.81, + "p95": 1126.31, + "p99": 1126.31, + "samples": 15 + }, + "screenshot": { + "median": 707.04, + "p95": 1061.01, + "p99": 1061.01, + "samples": 10 + }, + "textContent": { + "median": 56.11, + "p95": 314.5, + "p99": 314.5, + "samples": 10 + }, + "click": { + "median": 2153.72, + "p95": 3194.15, + "p99": 3194.15, + "samples": 5 + }, + "goBack": { + "median": 126.36, + "p95": 150.25, + "p99": 150.25, + "samples": 5 + } + } + }, + "compositeScore": 14.59, + "successRate": 0.2, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 1108.61, + "connectMs": 374.91, + "taskMs": 7225.26, + "releaseMs": 256.19, + "totalMs": 8983.46, + "aggregateActionsPerSecond": 34.6, + "sessions": [ + { + "sessionId": "sess_822ead092b6147df943559c7d1d1e1a6", + "createMs": 1088.53, + "connectMs": 161.35, + "taskMs": 2598.81, + "actionsCompleted": 10, + "actionsPerSecond": 3.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 246.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 410.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 473.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 631.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 300.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.14, + "success": true + } + ] + }, + { + "sessionId": "sess_a49ae70c6e4740c8961b728aac9a7624", + "createMs": 1105.98, + "connectMs": 159.09, + "taskMs": 4154.21, + "actionsCompleted": 10, + "actionsPerSecond": 2.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 248.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1414.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 203.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 409.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 43.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 119.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 846.47, + "success": true + } + ] + }, + { + "sessionId": "sess_db4bbcfe0a2042a98382d362aa8dc64a", + "createMs": 616.35, + "connectMs": 182.99, + "taskMs": 4634.38, + "actionsCompleted": 10, + "actionsPerSecond": 2.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 579.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 342.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 457.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1029.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1678.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 257.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.63, + "success": true + } + ] + }, + { + "sessionId": "sess_4905556876dd4b96937c7f8576284dd6", + "createMs": 1065.14, + "connectMs": 163.95, + "taskMs": 2798.47, + "actionsCompleted": 10, + "actionsPerSecond": 3.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 194.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 669.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 71.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.99, + "success": true + } + ] + }, + { + "sessionId": "sess_47ba7a332fbc4fd69b346bfc892ce0da", + "createMs": 940.71, + "connectMs": 225.17, + "taskMs": 5114.29, + "actionsCompleted": 10, + "actionsPerSecond": 1.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 674.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 43.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1439.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 785.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 45.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 360.24, + "success": true + } + ] + }, + { + "sessionId": "sess_0cf5a8d1bcd14e17a599a65e0791fc89", + "createMs": 1017.4, + "connectMs": 159, + "taskMs": 6459.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 590.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 429.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 315.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1740.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2256.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 707.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 286.61, + "success": true + } + ] + }, + { + "sessionId": "sess_5100bf7769b24c4d96ccba293701c4cc", + "createMs": 668.41, + "connectMs": 248.33, + "taskMs": 6444.82, + "actionsCompleted": 10, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 590.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 670.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 708.72, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1609.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 782.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1138.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 218.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 643.34, + "success": true + } + ] + }, + { + "sessionId": "sess_40af1183a1c745dbb1014304ebc0c135", + "createMs": 633.74, + "connectMs": 253.32, + "taskMs": 5177.11, + "actionsCompleted": 10, + "actionsPerSecond": 1.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 578.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 433.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 503.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 199.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1374.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1096.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 464.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 36.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 179.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 309.5, + "success": true + } + ] + }, + { + "sessionId": "sess_2c37c40821f04e6aba06b31b6d85ec58", + "createMs": 763.02, + "connectMs": 165.18, + "taskMs": 2696.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 213.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 455.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 399.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 773.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 324.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 73.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 117.08, + "success": true + } + ] + }, + { + "sessionId": "sess_72ab6b8d2f4f47f7aef54e394089d921", + "createMs": 1017.43, + "connectMs": 183, + "taskMs": 3141.32, + "actionsCompleted": 10, + "actionsPerSecond": 3.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 558.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 185.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 209.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1050.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 587.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 255.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.86, + "success": true + } + ] + }, + { + "sessionId": "sess_b687155898584ccfb5683f5d230bb98f", + "createMs": 1061.57, + "connectMs": 333.22, + "taskMs": 2631.4, + "actionsCompleted": 10, + "actionsPerSecond": 3.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 643.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 135.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 449.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 498.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 336.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.46, + "success": true + } + ] + }, + { + "sessionId": "sess_3bd6f68ef3604dc8b3877b690e0b82bb", + "createMs": 761.41, + "connectMs": 174.08, + "taskMs": 2838.12, + "actionsCompleted": 10, + "actionsPerSecond": 3.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 165.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 998.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 270.9, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 335.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.01, + "success": true + } + ] + }, + { + "sessionId": "sess_f63692844dd64ebba97f11f2b5a599af", + "createMs": 683.95, + "connectMs": 373.74, + "taskMs": 3006, + "actionsCompleted": 10, + "actionsPerSecond": 3.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 526.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 197.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1165.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 443.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 161, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 195.44, + "success": true + } + ] + }, + { + "sessionId": "sess_b9acfe1cd70741d6bc0db97e6c236da0", + "createMs": 855.65, + "connectMs": 238.88, + "taskMs": 5160.63, + "actionsCompleted": 10, + "actionsPerSecond": 1.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 579, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 638.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 516.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 68.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1506.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 910.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 379.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 394.11, + "success": true + } + ] + }, + { + "sessionId": "sess_d1249ac262df437f93a07d36513505d6", + "createMs": 871.84, + "connectMs": 250.17, + "taskMs": 7223.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 578.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 436.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 499.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 198.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1464.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2387.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 774.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 281.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 559.81, + "success": true + } + ] + }, + { + "sessionId": "sess_f54787234c934191a587a0d09fb2f78a", + "createMs": 955.26, + "connectMs": 254.94, + "taskMs": 6036.52, + "actionsCompleted": 10, + "actionsPerSecond": 1.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 459.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 488.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 200.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1290.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1563.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 541.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 217.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 674.15, + "success": true + } + ] + }, + { + "sessionId": "sess_c5b4c67584f341f7bb24423cd5b5c18f", + "createMs": 706.24, + "connectMs": 169.48, + "taskMs": 2883.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 219.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 441.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 446.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 910.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 302.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 46.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.79, + "success": true + } + ] + }, + { + "sessionId": "sess_94c48597d593499cb5574b094172840a", + "createMs": 747.12, + "connectMs": 169.94, + "taskMs": 3011.06, + "actionsCompleted": 10, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 222.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 448.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 989.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 632.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 243.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.26, + "success": true + } + ] + }, + { + "sessionId": "sess_37100ca83a4e4df3a12e2568bb817fee", + "createMs": 735.79, + "connectMs": 170.19, + "taskMs": 3931.75, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 549.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 252.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 414.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1057.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 486.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 226.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.06, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 838, + "success": true + } + ] + }, + { + "sessionId": "sess_bd99276705bf4105ad744b97efcd0bc9", + "createMs": 530.89, + "connectMs": 199.29, + "taskMs": 5366.97, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 409.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 361.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1510.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1388.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 751.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 173.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 165.56, + "success": true + } + ] + }, + { + "sessionId": "sess_396284351a9d4e9884e8e6f7854c4fbb", + "createMs": 1064.45, + "connectMs": 176.75, + "taskMs": 2948.82, + "actionsCompleted": 10, + "actionsPerSecond": 3.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 558.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 162.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 214.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 895.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 478.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 375.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 84.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.97, + "success": true + } + ] + }, + { + "sessionId": "sess_591fd137421741068744f8cf15eaeeef", + "createMs": 984.65, + "connectMs": 199.84, + "taskMs": 4733.67, + "actionsCompleted": 10, + "actionsPerSecond": 2.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 552.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 401.04, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 459.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 69.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1446.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 602.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 808.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 103.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.73, + "success": true + } + ] + }, + { + "sessionId": "sess_6aa0bffed43c4137ae497480271f37ef", + "createMs": 984.56, + "connectMs": 219.46, + "taskMs": 4783.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 578.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 402.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 497.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 206.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1281.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 891.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 544.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 100.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 246.05, + "success": true + } + ] + }, + { + "sessionId": "sess_4c156637d3ca44ec983a550ac91b186e", + "createMs": 1106.08, + "connectMs": 174.04, + "taskMs": 2534.07, + "actionsCompleted": 10, + "actionsPerSecond": 3.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 250.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 422.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 432.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 477.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.57, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 284.45, + "success": true + } + ] + }, + { + "sessionId": "sess_10957536737249dca95a5dd9eee1168f", + "createMs": 589.37, + "connectMs": 163.83, + "taskMs": 4676.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 689.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 700.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 539.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1009.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1198.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 239.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 71.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.15, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 1108.61, + "p95": 1108.61, + "p99": 1108.61, + "samples": 1 + }, + "connectMs": { + "median": 374.91, + "p95": 374.91, + "p99": 374.91, + "samples": 1 + }, + "taskMs": { + "median": 7225.26, + "p95": 7225.26, + "p99": 7225.26, + "samples": 1 + }, + "loopMs": { + "median": 4154.21, + "p95": 6444.82, + "p99": 6459.58, + "samples": 25 + }, + "actionsPerSecond": { + "median": 34.6, + "p95": 34.6, + "p99": 34.6, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.41, + "p95": 3.8, + "p99": 3.85, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 567.63, + "p95": 590.95, + "p99": 643.44, + "samples": 25 + }, + "waitForSelector": { + "median": 433.41, + "p95": 1096.89, + "p99": 1563.58, + "samples": 75 + }, + "screenshot": { + "median": 341.33, + "p95": 728.06, + "p99": 774.79, + "samples": 50 + }, + "textContent": { + "median": 23.56, + "p95": 87.22, + "p99": 199.85, + "samples": 50 + }, + "click": { + "median": 1057.51, + "p95": 1510.81, + "p99": 1609.67, + "samples": 25 + }, + "goBack": { + "median": 96.77, + "p95": 217.05, + "p99": 218.39, + "samples": 25 + } + } + }, + "compositeScore": 83.37, + "successRate": 1, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c25/2026-08-18.json b/results/browser-concurrent/c25/2026-08-18.json new file mode 100644 index 00000000..5165f616 --- /dev/null +++ b/results/browser-concurrent/c25/2026-08-18.json @@ -0,0 +1,9825 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.735Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 25, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 508.67, + "connectMs": 330.3, + "taskMs": 11695.77, + "releaseMs": 858.04, + "totalMs": 13406.44, + "aggregateActionsPerSecond": 20.86, + "sessions": [ + { + "sessionId": "0521b903-f875-4512-9220-9e35b722e284", + "createMs": 408.69, + "connectMs": 208.28, + "taskMs": 2277.92, + "actionsCompleted": 10, + "actionsPerSecond": 4.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.48, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 293.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 392.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 214.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.37, + "success": true + } + ] + }, + { + "sessionId": "3283d4ef-e983-422e-a1a5-ef01defd7db3", + "createMs": 422.72, + "connectMs": 329.1, + "taskMs": 2121.61, + "actionsCompleted": 10, + "actionsPerSecond": 4.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 755.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 421.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 214.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.44, + "success": true + } + ] + }, + { + "sessionId": "2d3cdba7-f1c2-4e3c-bf39-dac42a9d729d", + "createMs": 377.38, + "connectMs": 268.26, + "taskMs": 2447.5, + "actionsCompleted": 10, + "actionsPerSecond": 4.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 784.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 203.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 341.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.02, + "success": true + } + ] + }, + { + "sessionId": "c42331e4-71c3-47a8-a423-94819e7f0f65", + "createMs": 402.94, + "connectMs": 220.9, + "taskMs": 2886.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 713.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 294.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 452.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 600.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.34, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 257.88, + "success": true + } + ] + }, + { + "sessionId": "9ca26972-78f9-43ae-b36e-18f727c58f30", + "createMs": 359.33, + "connectMs": 202.52, + "taskMs": 2392.86, + "actionsCompleted": 10, + "actionsPerSecond": 4.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 453.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 268.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 413.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 160.26, + "success": true + } + ] + }, + { + "sessionId": "2188e286-ddc5-4fa4-94c5-3725d8822bf0", + "createMs": 361.96, + "connectMs": 220.87, + "taskMs": 2518.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 891.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 77.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 309.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 386, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 262.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.88, + "success": true + } + ] + }, + { + "sessionId": "76328932-5253-44f6-87df-8af8accbfc27", + "createMs": 391.93, + "connectMs": 201.08, + "taskMs": 2244.23, + "actionsCompleted": 10, + "actionsPerSecond": 4.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 791.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 127.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 218.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 423.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 179.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 167.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 274.54, + "success": true + } + ] + }, + { + "sessionId": "22e00577-6879-431e-928a-796e2febdd01", + "createMs": 409.09, + "connectMs": 226.36, + "taskMs": 2476.82, + "actionsCompleted": 10, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 884.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 377.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 245.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 298.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 301.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 211.14, + "success": true + } + ] + }, + { + "sessionId": "e521fa93-9428-46ea-99ff-f5d094e2ec5b", + "createMs": 405.07, + "connectMs": 220.21, + "taskMs": 2759.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 770.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 92.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 313.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 348.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 573.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 403.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.15, + "success": true + } + ] + }, + { + "sessionId": "0cf0c9eb-00aa-4547-9896-3170154db55d", + "createMs": 409.3, + "connectMs": 311.65, + "taskMs": 2327.1, + "actionsCompleted": 10, + "actionsPerSecond": 4.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 676.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 77.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 333.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 296.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.27, + "success": true + } + ] + }, + { + "sessionId": "9a69e8b3-3388-4a3f-9dac-7dfd0430a6c8", + "createMs": 418.95, + "connectMs": 228.08, + "taskMs": 2041.3, + "actionsCompleted": 10, + "actionsPerSecond": 4.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 677.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 134.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 375.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 231.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.93, + "success": true + } + ] + }, + { + "sessionId": "28db037c-4204-4765-ae76-9edbb7853a04", + "createMs": 414.63, + "connectMs": 225.65, + "taskMs": 2292.07, + "actionsCompleted": 10, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 668.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 92.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 219.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 375.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 277.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 277.7, + "success": true + } + ] + }, + { + "sessionId": "7f1d78af-dac1-413c-8dc7-5202336048e8", + "createMs": 507.32, + "connectMs": 226.78, + "taskMs": 2436.93, + "actionsCompleted": 10, + "actionsPerSecond": 4.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 852.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.73, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.61, + "success": true + } + ] + }, + { + "sessionId": "32114490-8997-48b7-9b21-93c4377cb5fd", + "createMs": 360.76, + "connectMs": 228.26, + "taskMs": 2619.86, + "actionsCompleted": 10, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 889.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 81.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 464.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 196.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 470.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 209.81, + "success": true + } + ] + }, + { + "sessionId": "56c0b5b5-f176-4b67-bb8f-3bd7b202321f", + "createMs": 419.36, + "connectMs": 219.84, + "taskMs": 2559.54, + "actionsCompleted": 10, + "actionsPerSecond": 3.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 330.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 344.9, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 172.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 726.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.07, + "success": true + } + ] + }, + { + "sessionId": "265ed6ad-39ce-46ca-83c9-1f82bdf7b166", + "createMs": 411.38, + "connectMs": 226.95, + "taskMs": 2964.91, + "actionsCompleted": 10, + "actionsPerSecond": 3.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1021.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 287.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 512.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 424.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.29, + "success": true + } + ] + }, + { + "sessionId": "8907df18-ae11-42ab-bf95-64cd3d0b63e8", + "createMs": 361.89, + "connectMs": 228.73, + "taskMs": 2682.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 953.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 347.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 332.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 244.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 386.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 251, + "success": true + } + ] + }, + { + "sessionId": "011a14d9-6445-43ba-8da6-f9d1211fc0ba", + "createMs": 373.44, + "connectMs": 282.12, + "taskMs": 3221.55, + "actionsCompleted": 10, + "actionsPerSecond": 3.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 929.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 489.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 503.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 455.18, + "success": true + } + ] + }, + { + "sessionId": "fefcec19-488a-47ef-8a01-c8276dc83f56", + "createMs": 409.63, + "connectMs": 219.39, + "taskMs": 2742.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 936.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 306.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 213.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 390.95, + "success": true + } + ] + }, + { + "sessionId": "be999295-b197-4961-a1a0-aa1588cc98a0", + "createMs": 409, + "connectMs": 226.61, + "taskMs": 3147.85, + "actionsCompleted": 10, + "actionsPerSecond": 3.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1104.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 343.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 449.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 578.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 234.89, + "success": true + } + ] + }, + { + "sessionId": "12d7401c-271e-461d-b740-d6f1d7948233", + "createMs": 376.75, + "connectMs": 227.32, + "taskMs": 2601.18, + "actionsCompleted": 10, + "actionsPerSecond": 3.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 824.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 80.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 555.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.91, + "success": true + } + ] + }, + { + "sessionId": "411fc611-47a1-42f7-9379-54fb911e0a40", + "createMs": 361.84, + "connectMs": 219.99, + "taskMs": 2656.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 251.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 458.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 252.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 443.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.61, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.06, + "success": true + } + ] + }, + { + "sessionId": "33c2b1c2-4793-4b01-b756-654617a20217", + "createMs": 413.47, + "connectMs": 328.36, + "taskMs": 2642.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 860.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 344.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 491.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.12, + "success": true + } + ] + }, + { + "sessionId": "15bd2272-90b6-492a-a295-6588e51d1abe", + "createMs": 360.76, + "connectMs": 219.29, + "taskMs": 11693.66, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1133.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 307.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 245.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.35, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "f16fb012-8e3a-4fa1-9fbd-f75e022001fd", + "createMs": 415.84, + "connectMs": 236.26, + "taskMs": 2921.73, + "actionsCompleted": 10, + "actionsPerSecond": 3.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 882.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 262.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 571.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 262.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 338.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.91, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 508.67, + "p95": 508.67, + "p99": 508.67, + "samples": 1 + }, + "connectMs": { + "median": 330.3, + "p95": 330.3, + "p99": 330.3, + "samples": 1 + }, + "taskMs": { + "median": 3221.55, + "p95": 3221.55, + "p99": 3221.55, + "samples": 1 + }, + "loopMs": { + "median": 2580.36, + "p95": 2964.91, + "p99": 3147.85, + "samples": 24 + }, + "actionsPerSecond": { + "median": 20.86, + "p95": 20.86, + "p99": 20.86, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.84, + "p95": 4.46, + "p99": 4.71, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 824.41, + "p95": 1021.61, + "p99": 1104.36, + "samples": 25 + }, + "waitForSelector": { + "median": 197.02, + "p95": 390.95, + "p99": 503.63, + "samples": 73 + }, + "screenshot": { + "median": 307.52, + "p95": 469.02, + "p99": 491.16, + "samples": 49 + }, + "textContent": { + "median": 6.25, + "p95": 14.13, + "p99": 24.55, + "samples": 49 + }, + "click": { + "median": 389.02, + "p95": 497.71, + "p99": 555.65, + "samples": 24 + }, + "goBack": { + "median": 42.92, + "p95": 59.74, + "p99": 60.75, + "samples": 24 + } + } + }, + "compositeScore": 85.49, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 318.65, + "connectMs": 649.61, + "taskMs": 11052.23, + "releaseMs": 1204.27, + "totalMs": 13267.77, + "aggregateActionsPerSecond": 22.08, + "sessions": [ + { + "sessionId": "0ad75d2f-602d-48ac-9bf8-c30e2a50bdec", + "createMs": 228.17, + "connectMs": 185.82, + "taskMs": 3387.87, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 249.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 628.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 833.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 187.29, + "success": true + } + ] + }, + { + "sessionId": "0ed7e051-b39e-4875-9bb5-1579c640b948", + "createMs": 316.69, + "connectMs": 196.37, + "taskMs": 2610.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 592.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 244.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 629.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 326.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 239.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.46, + "success": true + } + ] + }, + { + "sessionId": "b3625515-fea5-4fb1-a50b-30af5a4012eb", + "createMs": 235.44, + "connectMs": 241.56, + "taskMs": 3256.31, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 605.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 318.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 386.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 725.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 497.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 430.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.73, + "success": true + } + ] + }, + { + "sessionId": "da963508-41a6-4753-ac6f-efd93fcc46a5", + "createMs": 225.26, + "connectMs": 241.98, + "taskMs": 3881.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 668.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 286.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 484.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 869.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 910.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 339.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206, + "success": true + } + ] + }, + { + "sessionId": "ce40f986-b0a4-4883-bc2b-41ab9cdb87b9", + "createMs": 317.22, + "connectMs": 206.19, + "taskMs": 3680.4, + "actionsCompleted": 10, + "actionsPerSecond": 2.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 426.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1278.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 431.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 145.07, + "success": true + } + ] + }, + { + "sessionId": "4b0a3aa9-a8e0-4b9c-bcd1-4c0165a5756d", + "createMs": 307.52, + "connectMs": 256.04, + "taskMs": 2691.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 223.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 253.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 651.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 430.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.38, + "success": true + } + ] + }, + { + "sessionId": "4edb7da9-08d8-4278-8ba5-715f85dec5d5", + "createMs": 232.9, + "connectMs": 292.38, + "taskMs": 3117.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 593.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 769.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 362.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.04, + "success": true + } + ] + }, + { + "sessionId": "689cbc70-e403-44fd-b597-e2ae5bfa9215", + "createMs": 306.3, + "connectMs": 298.27, + "taskMs": 3317.48, + "actionsCompleted": 10, + "actionsPerSecond": 3.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 776.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 560.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 697.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 356.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 370.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.01, + "success": true + } + ] + }, + { + "sessionId": "9a465d7a-e54f-417e-844d-eec600b6accd", + "createMs": 247.76, + "connectMs": 325.24, + "taskMs": 3358.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 669.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 278.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 715.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 781.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 308.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.05, + "success": true + } + ] + }, + { + "sessionId": "844e30a3-1db0-49fd-96c6-44892637f821", + "createMs": 305.68, + "connectMs": 302.89, + "taskMs": 2773.32, + "actionsCompleted": 10, + "actionsPerSecond": 3.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 678.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 599.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 567.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 158.31, + "success": true + } + ] + }, + { + "sessionId": "cfb45041-95f4-4151-8f23-8d5b83622818", + "createMs": 304.51, + "connectMs": 358.81, + "taskMs": 3330.58, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 841.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 374.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 850.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 337.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 383.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.96, + "success": true + } + ] + }, + { + "sessionId": "9743a32c-3f24-427b-b8a2-f177aea0c8e5", + "createMs": 232.39, + "connectMs": 331.51, + "taskMs": 2641.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 211.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 243.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 666.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 418.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 230.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.66, + "success": true + } + ] + }, + { + "sessionId": "61920233-253b-4561-b84f-a77023ba6fa2", + "createMs": 248.8, + "connectMs": 380.38, + "taskMs": 3399.91, + "actionsCompleted": 10, + "actionsPerSecond": 2.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 731.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 322.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 681.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 422.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 562.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.34, + "success": true + } + ] + }, + { + "sessionId": "0b641a6c-1396-4fb5-8467-98f27b1016aa", + "createMs": 236.23, + "connectMs": 378.57, + "taskMs": 3411.02, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 889.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 220.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1007.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 565.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 305.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.36, + "success": true + } + ] + }, + { + "sessionId": "565bc300-28b1-474e-8893-3ced3ce8cd03", + "createMs": 248.9, + "connectMs": 362.72, + "taskMs": 2651.5, + "actionsCompleted": 10, + "actionsPerSecond": 3.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 450.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 270.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 584.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 450.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 395.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.78, + "success": true + } + ] + }, + { + "sessionId": "cd421fcc-c163-441d-b3de-3ba4f5d684a2", + "createMs": 243.45, + "connectMs": 648.63, + "taskMs": 3745.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 700.25, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 206.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1024.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 605.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 516.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.94, + "success": true + } + ] + }, + { + "sessionId": "407a84b3-d40d-4988-a412-82065b64c0c6", + "createMs": 239.4, + "connectMs": 408.79, + "taskMs": 2895.6, + "actionsCompleted": 10, + "actionsPerSecond": 3.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 639.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 376.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 436.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.05, + "success": true + } + ] + }, + { + "sessionId": "31478c5d-74b5-4dbb-93e3-484bcfc9a1dc", + "createMs": 293.12, + "connectMs": 477.45, + "taskMs": 3567.2, + "actionsCompleted": 10, + "actionsPerSecond": 2.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 877.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 252.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 471.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 786.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 377.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.94, + "success": true + } + ] + }, + { + "sessionId": "9808843b-75b2-4c42-a570-85c78c4e1bf4", + "createMs": 233.61, + "connectMs": 456.84, + "taskMs": 3081.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 722.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 273.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 563.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 587.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.97, + "success": true + } + ] + }, + { + "sessionId": "cffdba63-03d6-44c7-9abc-9c3da1751106", + "createMs": 234.14, + "connectMs": 514.95, + "taskMs": 3186.14, + "actionsCompleted": 10, + "actionsPerSecond": 3.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 672.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 254.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 711.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 651.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.08, + "success": true + } + ] + }, + { + "sessionId": "b2e6b94a-95cb-4369-899d-6379d750d29a", + "createMs": 208.11, + "connectMs": 521.11, + "taskMs": 2781.43, + "actionsCompleted": 10, + "actionsPerSecond": 3.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 586.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 272.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 271.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 491.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.48, + "success": true + } + ] + }, + { + "sessionId": "540ce551-3d81-487b-974b-19757e2337e3", + "createMs": 231.37, + "connectMs": 551.09, + "taskMs": 3382.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 729.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 333.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 828.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 538.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.25, + "success": true + } + ] + }, + { + "sessionId": "59724802-f1c7-4b30-9c39-b1a18ac53231", + "createMs": 252.11, + "connectMs": 552.52, + "taskMs": 3163.18, + "actionsCompleted": 10, + "actionsPerSecond": 3.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 614.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 283.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 327.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 686.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 628.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.83, + "success": true + } + ] + }, + { + "sessionId": "36098a17-e506-441f-9bd3-1bb3a803c00e", + "createMs": 234.69, + "connectMs": 515.81, + "taskMs": 11050.91, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 659.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 9999.63, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "26c66b03-e7b7-4046-a925-f4cb749a31fe", + "createMs": 231.14, + "connectMs": 601.61, + "taskMs": 3738.62, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 994, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 292.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 283.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1088.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 458.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 195.69, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 318.65, + "p95": 318.65, + "p99": 318.65, + "samples": 1 + }, + "connectMs": { + "median": 649.61, + "p95": 649.61, + "p99": 649.61, + "samples": 1 + }, + "taskMs": { + "median": 3881.82, + "p95": 3881.82, + "p99": 3881.82, + "samples": 1 + }, + "loopMs": { + "median": 3286.89, + "p95": 3738.62, + "p99": 3745.59, + "samples": 24 + }, + "actionsPerSecond": { + "median": 22.08, + "p95": 22.08, + "p99": 22.08, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.01, + "p95": 3.77, + "p99": 3.79, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 672.92, + "p95": 877.65, + "p99": 889.09, + "samples": 25 + }, + "waitForSelector": { + "median": 253.58, + "p95": 567.1, + "p99": 628.72, + "samples": 73 + }, + "screenshot": { + "median": 339.26, + "p95": 489.46, + "p99": 560.87, + "samples": 49 + }, + "textContent": { + "median": 21.9, + "p95": 26.27, + "p99": 27.33, + "samples": 49 + }, + "click": { + "median": 713.19, + "p95": 1024.5, + "p99": 1088.83, + "samples": 24 + }, + "goBack": { + "median": 51.86, + "p95": 58.53, + "p99": 60.52, + "samples": 24 + } + } + }, + "compositeScore": 83.8, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 655.29, + "connectMs": 219.41, + "taskMs": 11257.75, + "releaseMs": 227.78, + "totalMs": 12380.82, + "aggregateActionsPerSecond": 21.67, + "sessions": [ + { + "sessionId": "47d2f21a-2fb7-4737-8292-8412925d029a", + "createMs": 653.58, + "connectMs": 165.41, + "taskMs": 3248.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 689.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 461.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 968.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 299.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.87, + "success": true + } + ] + }, + { + "sessionId": "651cd61b-d6ba-47a2-b7f1-c71170fe2702", + "createMs": 384.15, + "connectMs": 180.23, + "taskMs": 2738.7, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 651.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 665.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 313.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 292.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 87.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.09, + "success": true + } + ] + }, + { + "sessionId": "3e13ada6-6500-4087-b0d1-d2c056f383c5", + "createMs": 542.3, + "connectMs": 186.62, + "taskMs": 2879.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 628.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 355.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 526.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 530.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 88.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 234.85, + "success": true + } + ] + }, + { + "sessionId": "808c43e8-f733-45d8-87c1-89405ba6980e", + "createMs": 519.88, + "connectMs": 187.46, + "taskMs": 4425.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 758.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 494.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 995.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1015.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 670.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 196.99, + "success": true + } + ] + }, + { + "sessionId": "6954d6a6-0062-4831-a061-2676e3f6e72d", + "createMs": 522.63, + "connectMs": 179.19, + "taskMs": 3654.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 703.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 123.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 439.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 999.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 564.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 457.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 134.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.13, + "success": true + } + ] + }, + { + "sessionId": "a6f36627-42c0-46c4-b8a8-be780ce8b06e", + "createMs": 336.08, + "connectMs": 189.04, + "taskMs": 2728.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 340.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 520.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 459.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 356.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 99.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 153.07, + "success": true + } + ] + }, + { + "sessionId": "65b5f8fc-a1db-41ef-a682-f4169ce7c252", + "createMs": 569.08, + "connectMs": 189.67, + "taskMs": 3024.52, + "actionsCompleted": 10, + "actionsPerSecond": 3.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 672.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 130.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 463.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 771.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 321.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 313.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.78, + "success": true + } + ] + }, + { + "sessionId": "d2427ccc-e789-4588-9e6b-72e574cbeab0", + "createMs": 331.26, + "connectMs": 185.83, + "taskMs": 3031, + "actionsCompleted": 10, + "actionsPerSecond": 3.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 694.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 629.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 232.42, + "success": true + } + ] + }, + { + "sessionId": "6dd6e6da-9092-47b3-ba07-753e749318da", + "createMs": 540.39, + "connectMs": 189.89, + "taskMs": 4602.94, + "actionsCompleted": 10, + "actionsPerSecond": 2.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 762.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 128.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 949.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 518.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1065.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 820.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 204.24, + "success": true + } + ] + }, + { + "sessionId": "1b43b6f7-fa77-4441-982c-7130cce4505a", + "createMs": 565.12, + "connectMs": 177.76, + "taskMs": 3124, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 638.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 129.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 573.75, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 592.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 440.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 162.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.55, + "success": true + } + ] + }, + { + "sessionId": "080af1b8-6e1a-4981-b826-3316cc2e38dd", + "createMs": 585.9, + "connectMs": 187.05, + "taskMs": 2479.37, + "actionsCompleted": 10, + "actionsPerSecond": 4.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 559.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 400.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 437.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 289.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 389.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 100.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.72, + "success": true + } + ] + }, + { + "sessionId": "38a43ea9-89e3-4b21-9586-03b2c0037687", + "createMs": 551.07, + "connectMs": 183.15, + "taskMs": 3412.63, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 123.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 452.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1048.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 377.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 363.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.75, + "success": true + } + ] + }, + { + "sessionId": "92138a37-d4e1-483c-bd3a-dbb1aaf1fa98", + "createMs": 591.14, + "connectMs": 187.73, + "taskMs": 3659.25, + "actionsCompleted": 10, + "actionsPerSecond": 2.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 810.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 105.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 513.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1021.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 398.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 495.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.56, + "success": true + } + ] + }, + { + "sessionId": "5cd3852e-ddae-46a6-b6e8-3fd69a9fe3f5", + "createMs": 567.99, + "connectMs": 185.12, + "taskMs": 3774.1, + "actionsCompleted": 10, + "actionsPerSecond": 2.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 888.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 391.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 967.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 508.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 170.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 220.99, + "success": true + } + ] + }, + { + "sessionId": "ad9ab088-425b-4d81-a29a-5a3c86594742", + "createMs": 361.76, + "connectMs": 185.96, + "taskMs": 3366.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 721.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 454.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 748.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 455.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 208.77, + "success": true + } + ] + }, + { + "sessionId": "b13bdd26-9d64-4129-bd1d-1eb9f8461c07", + "createMs": 500.37, + "connectMs": 175.37, + "taskMs": 3708.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 770.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 417.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 907.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 657.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 113.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.63, + "success": true + } + ] + }, + { + "sessionId": "037a5859-054f-4b97-98d5-085af80c70b6", + "createMs": 489.53, + "connectMs": 213.75, + "taskMs": 3501.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 856.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 863.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 459.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 193.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.45, + "success": true + } + ] + }, + { + "sessionId": "5545bf7c-5420-4994-802c-0cb737380227", + "createMs": 572.67, + "connectMs": 189.96, + "taskMs": 3312.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 444.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 770.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 532.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 151.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.21, + "success": true + } + ] + }, + { + "sessionId": "25b676d0-1af8-4e3c-be5e-73b955cd063c", + "createMs": 601.14, + "connectMs": 205.3, + "taskMs": 3748.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1243.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 421.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 648.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.22, + "success": true + } + ] + }, + { + "sessionId": "4b241037-bbfa-4f6b-8446-6aa565139a05", + "createMs": 527.24, + "connectMs": 208.42, + "taskMs": 3804.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 719.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 770.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 661.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 742.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.23, + "success": true + } + ] + }, + { + "sessionId": "8d8df23a-4e0b-4600-b6ba-8b9eaeadc004", + "createMs": 602.58, + "connectMs": 206.56, + "taskMs": 3415.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 808.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 707.98, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 571.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.45, + "success": true + } + ] + }, + { + "sessionId": "77b091d9-dc54-4256-8a90-aea27f7ed164", + "createMs": 511.89, + "connectMs": 216.06, + "taskMs": 3896.63, + "actionsCompleted": 10, + "actionsPerSecond": 2.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 676.3, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 497.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 716.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 672.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 532.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 139.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 507.1, + "success": true + } + ] + }, + { + "sessionId": "ae8dd588-f6b0-4256-abe1-7c83402d0c3e", + "createMs": 582.3, + "connectMs": 218.52, + "taskMs": 3521.06, + "actionsCompleted": 10, + "actionsPerSecond": 2.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 449.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 805.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 680.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 405.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 148.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.61, + "success": true + } + ] + }, + { + "sessionId": "ad1785aa-84e9-4716-b7d9-42d54ea6a940", + "createMs": 429.11, + "connectMs": 207.54, + "taskMs": 11254.61, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 714.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 419.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.86, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "8b5088c2-ab1a-4426-8871-a2d298ce8a38", + "createMs": 482.81, + "connectMs": 214.61, + "taskMs": 3895.43, + "actionsCompleted": 10, + "actionsPerSecond": 2.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 955.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 935.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 431.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 583.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 206.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 236.93, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 655.29, + "p95": 655.29, + "p99": 655.29, + "samples": 1 + }, + "connectMs": { + "median": 219.41, + "p95": 219.41, + "p99": 219.41, + "samples": 1 + }, + "taskMs": { + "median": 4602.94, + "p95": 4602.94, + "p99": 4602.94, + "samples": 1 + }, + "loopMs": { + "median": 3458.77, + "p95": 3896.63, + "p99": 4425.98, + "samples": 24 + }, + "actionsPerSecond": { + "median": 21.67, + "p95": 21.67, + "p99": 21.67, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.86, + "p95": 3.65, + "p99": 3.67, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 703.11, + "p95": 888.55, + "p99": 955.11, + "samples": 25 + }, + "waitForSelector": { + "median": 196.99, + "p95": 648.48, + "p99": 672.5, + "samples": 73 + }, + "screenshot": { + "median": 447.29, + "p95": 583.48, + "p99": 742.65, + "samples": 49 + }, + "textContent": { + "median": 12.72, + "p95": 20.52, + "p99": 25.48, + "samples": 49 + }, + "click": { + "median": 770.54, + "p95": 999.44, + "p99": 1021.95, + "samples": 24 + }, + "goBack": { + "median": 135.59, + "p95": 170.65, + "p99": 193.19, + "samples": 24 + } + } + }, + "compositeScore": 83.04, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 10, + "createMs": 801.27, + "connectMs": 202.72, + "taskMs": 2261.56, + "releaseMs": 91.45, + "totalMs": 3370.41, + "aggregateActionsPerSecond": 44.22, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "henkjbgpae6gn5bxps5ctg3w", + "createMs": 189.18, + "connectMs": 98.18, + "taskMs": 1467.64, + "actionsCompleted": 10, + "actionsPerSecond": 6.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 160.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 290.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 230.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 180.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 44.16, + "success": true + } + ] + }, + { + "sessionId": "tllezmjw6us08d97whi3xnwx", + "createMs": 226.32, + "connectMs": 48.65, + "taskMs": 1343.99, + "actionsCompleted": 10, + "actionsPerSecond": 7.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 261.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 243.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 147.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 213.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 27.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 45.12, + "success": true + } + ] + }, + { + "sessionId": "kb0gc82i5htcykwoa04zx88j", + "createMs": 255.8, + "connectMs": 95.1, + "taskMs": 1712.79, + "actionsCompleted": 10, + "actionsPerSecond": 5.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 293.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 146.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 260.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 349.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 226.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 89.17, + "success": true + } + ] + }, + { + "sessionId": "e5hd7a121tq72umnr7mhfe49", + "createMs": 220.64, + "connectMs": 59.99, + "taskMs": 2108.96, + "actionsCompleted": 10, + "actionsPerSecond": 4.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 307.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 101.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 330.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 278.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 637.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 104.74, + "success": true + } + ] + }, + { + "sessionId": "cpc7lj0oa91f6gn3387arsza", + "createMs": 206.29, + "connectMs": 63.05, + "taskMs": 1410.47, + "actionsCompleted": 10, + "actionsPerSecond": 7.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 238.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 141.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 194.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 172.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 368.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 30.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 43, + "success": true + } + ] + }, + { + "sessionId": "tw2iwvcwkoco66phjrrt3a2e", + "createMs": 207.47, + "connectMs": 75.39, + "taskMs": 1456.77, + "actionsCompleted": 10, + "actionsPerSecond": 6.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 299.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 211.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 337.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 209.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 238.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 20.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.03, + "success": true + } + ] + }, + { + "sessionId": "oarhw9ud5ktnmrze2fx2gm55", + "createMs": 253.07, + "connectMs": 202.3, + "taskMs": 2260.64, + "actionsCompleted": 10, + "actionsPerSecond": 4.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 444.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 351.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 641.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 157.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 348.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 91.39, + "success": true + } + ] + }, + { + "sessionId": "b9uabuve06uyfeg4rtnrgbo0", + "createMs": 199.47, + "connectMs": 131.43, + "taskMs": 1245.14, + "actionsCompleted": 10, + "actionsPerSecond": 8.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 404.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 59.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 176.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 178.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 166.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 195.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 35.94, + "success": true + } + ] + }, + { + "sessionId": "pb9uf3caqw2rl83virh1br9a", + "createMs": 204.67, + "connectMs": 137.66, + "taskMs": 1813.61, + "actionsCompleted": 10, + "actionsPerSecond": 5.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 497.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 170.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 343.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 60.28, + "success": true + } + ] + }, + { + "sessionId": "cw0b5hmki4xecwlgdz8ap065", + "createMs": 225.85, + "connectMs": 161.81, + "taskMs": 1734.52, + "actionsCompleted": 10, + "actionsPerSecond": 5.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 257.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 291.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 267.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 333.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 56.7, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 801.27, + "p95": 801.27, + "p99": 801.27, + "samples": 1 + }, + "connectMs": { + "median": 202.72, + "p95": 202.72, + "p99": 202.72, + "samples": 1 + }, + "taskMs": { + "median": 2261.56, + "p95": 2261.56, + "p99": 2261.56, + "samples": 1 + }, + "loopMs": { + "median": 1590.22, + "p95": 2260.64, + "p99": 2260.64, + "samples": 10 + }, + "actionsPerSecond": { + "median": 44.22, + "p95": 44.22, + "p99": 44.22, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 6.33, + "p95": 8.03, + "p99": 8.03, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 301.3, + "p95": 497.36, + "p99": 497.36, + "samples": 10 + }, + "waitForSelector": { + "median": 144.11, + "p95": 333.25, + "p99": 343.79, + "samples": 30 + }, + "screenshot": { + "median": 249.58, + "p95": 351.44, + "p99": 351.44, + "samples": 20 + }, + "textContent": { + "median": 4.15, + "p95": 11.63, + "p99": 11.63, + "samples": 20 + }, + "click": { + "median": 272.75, + "p95": 641.39, + "p99": 641.39, + "samples": 10 + }, + "goBack": { + "median": 32.88, + "p95": 47.1, + "p99": 47.1, + "samples": 10 + } + } + }, + "compositeScore": 37.21, + "successRate": 0.4, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 6, + "createMs": 3470.34, + "connectMs": 12121.56, + "taskMs": 79264.21, + "releaseMs": 1912.97, + "totalMs": 97232.43, + "aggregateActionsPerSecond": 0.76, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "83601839-a7e3-4618-a1ca-8d9253118b7d", + "createMs": 1109.49, + "connectMs": 3428.58, + "taskMs": 68393.85, + "actionsCompleted": 10, + "actionsPerSecond": 0.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2335.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6946.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 16974.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 411.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 20942.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5127.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 7073.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 504.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 2506.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5571.25, + "success": true + } + ] + }, + { + "sessionId": "267ff864-6852-4887-9cff-fbf8d17c8bb4", + "createMs": 1275.44, + "connectMs": 3286.03, + "taskMs": 48040.52, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1298.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 7012.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4703.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 453.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13424.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3887.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 10593.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 416.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1182.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5069.43, + "success": true + } + ] + }, + { + "sessionId": "edb002f0-d538-426c-a0f4-f749b069f857", + "createMs": 1128.57, + "connectMs": 12120.22, + "taskMs": 49107.94, + "actionsCompleted": 10, + "actionsPerSecond": 0.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1990.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3358.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6514.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 1069.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14926.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5591.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 8764.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 395.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1183.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5313.91, + "success": true + } + ] + }, + { + "sessionId": "42b65ddd-38cd-4014-9695-7e6655239339", + "createMs": 1260.79, + "connectMs": 3035.36, + "taskMs": 39757.06, + "actionsCompleted": 10, + "actionsPerSecond": 0.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2032.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3258.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6402.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 454.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16193.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3076.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3794.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 421.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1171.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2951.41, + "success": true + } + ] + }, + { + "sessionId": "5a78771d-0b47-4f9d-b071-25be9512bdf9", + "createMs": 2157.16, + "connectMs": 4190.3, + "taskMs": 79263.19, + "actionsCompleted": 10, + "actionsPerSecond": 0.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2039.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 7137.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 12028.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 401.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24475.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 6779.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 19791.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 418.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1063.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5127.57, + "success": true + } + ] + }, + { + "sessionId": "8bc4ee88-0930-4fce-80da-5e3434647480", + "createMs": 1997.14, + "connectMs": 2708.24, + "taskMs": 38894.17, + "actionsCompleted": 10, + "actionsPerSecond": 0.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1780.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5323.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5213.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 442.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15102.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2879.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3825.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 411.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 862.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3054, + "success": true + } + ] + } + ], + "maxLiveSessions": 6, + "maxConcurrentActions": 6, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 6, + "p95": 6, + "p99": 6, + "samples": 1 + }, + "createMs": { + "median": 3470.34, + "p95": 3470.34, + "p99": 3470.34, + "samples": 1 + }, + "connectMs": { + "median": 12121.56, + "p95": 12121.56, + "p99": 12121.56, + "samples": 1 + }, + "taskMs": { + "median": 79264.21, + "p95": 79264.21, + "p99": 79264.21, + "samples": 1 + }, + "loopMs": { + "median": 48574.23, + "p95": 79263.19, + "p99": 79263.19, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.76, + "p95": 0.76, + "p99": 0.76, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.21, + "p95": 0.26, + "p99": 0.26, + "samples": 6 + }, + "perActionType": { + "navigate": { + "median": 2011.62, + "p95": 2335.48, + "p99": 2335.48, + "samples": 6 + }, + "waitForSelector": { + "median": 5127.45, + "p95": 7137.41, + "p99": 7137.41, + "samples": 18 + }, + "screenshot": { + "median": 6794.33, + "p95": 19791.32, + "p99": 19791.32, + "samples": 12 + }, + "textContent": { + "median": 419.84, + "p95": 1069.54, + "p99": 1069.54, + "samples": 12 + }, + "click": { + "median": 15647.95, + "p95": 24475.44, + "p99": 24475.44, + "samples": 6 + }, + "goBack": { + "median": 1177.3, + "p95": 2506.04, + "p99": 2506.04, + "samples": 6 + } + } + }, + "compositeScore": 9.2, + "successRate": 0.24, + "sessionCeiling": 6, + "concurrencyAchieved": 6, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 5, + "createMs": 8426.4, + "connectMs": 1386.33, + "taskMs": 6258.71, + "releaseMs": 2696.93, + "totalMs": 18833.47, + "aggregateActionsPerSecond": 7.99, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "08c137f0-fa80-4fa3-8993-4bce0fb6f002", + "createMs": 1150.29, + "connectMs": 461.22, + "taskMs": 5841.23, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1354.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 501.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 796.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1604.9, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 428.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 540.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 122.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 389.49, + "success": true + } + ] + }, + { + "sessionId": "9b2cd848-b983-4ea9-b65f-e11fbae449c0", + "createMs": 1160.36, + "connectMs": 508.05, + "taskMs": 4662.55, + "actionsCompleted": 10, + "actionsPerSecond": 2.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 511.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 644.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1369.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 447.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 523.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 411.15, + "success": true + } + ] + }, + { + "sessionId": "1f70e851-91c0-4c6b-a8eb-3bb20a6d72c8", + "createMs": 1104.28, + "connectMs": 508.47, + "taskMs": 6256.15, + "actionsCompleted": 10, + "actionsPerSecond": 1.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1327.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 558.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 698.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 58.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1657.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 541.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 737.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 141.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 476.51, + "success": true + } + ] + }, + { + "sessionId": "5d0ae306-bf86-4c35-bade-756e8148471d", + "createMs": 1886.89, + "connectMs": 396.1, + "taskMs": 6171.7, + "actionsCompleted": 10, + "actionsPerSecond": 1.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1316.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 493.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 616.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1678.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 788.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 643.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 121.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 405.63, + "success": true + } + ] + }, + { + "sessionId": "25079978-5372-41cd-a80b-2d754510eae0", + "createMs": 1132.05, + "connectMs": 1384.67, + "taskMs": 5861.29, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 470.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 485.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 630.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2391.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 649.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 583.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 418.8, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 8426.4, + "p95": 8426.4, + "p99": 8426.4, + "samples": 1 + }, + "connectMs": { + "median": 1386.33, + "p95": 1386.33, + "p99": 1386.33, + "samples": 1 + }, + "taskMs": { + "median": 6258.71, + "p95": 6258.71, + "p99": 6258.71, + "samples": 1 + }, + "loopMs": { + "median": 5861.29, + "p95": 6256.15, + "p99": 6256.15, + "samples": 5 + }, + "actionsPerSecond": { + "median": 7.99, + "p95": 7.99, + "p99": 7.99, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.71, + "p95": 2.14, + "p99": 2.14, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1316.89, + "p95": 1354.99, + "p99": 1354.99, + "samples": 5 + }, + "waitForSelector": { + "median": 485.8, + "p95": 788.09, + "p99": 788.09, + "samples": 15 + }, + "screenshot": { + "median": 637.03, + "p95": 796.15, + "p99": 796.15, + "samples": 10 + }, + "textContent": { + "median": 54.15, + "p95": 58.79, + "p99": 58.79, + "samples": 10 + }, + "click": { + "median": 1657.87, + "p95": 2391.46, + "p99": 2391.46, + "samples": 5 + }, + "goBack": { + "median": 122.63, + "p95": 141.04, + "p99": 141.04, + "samples": 5 + } + } + }, + "compositeScore": 14.83, + "successRate": 0.2, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 1160.14, + "connectMs": 232.67, + "taskMs": 10880.99, + "releaseMs": 322.76, + "totalMs": 12610.47, + "aggregateActionsPerSecond": 22.42, + "sessions": [ + { + "sessionId": "sess_406e3f2cf5e741e582b7d8fd75b36e19", + "createMs": 499.69, + "connectMs": 172.55, + "taskMs": 2786.28, + "actionsCompleted": 10, + "actionsPerSecond": 3.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 274.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 350.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 265.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 844.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 475.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 220.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 95.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.71, + "success": true + } + ] + }, + { + "sessionId": "sess_e6f5264bf6ad42a58f5ee2f46193a70a", + "createMs": 1064.28, + "connectMs": 221.5, + "taskMs": 2322.04, + "actionsCompleted": 10, + "actionsPerSecond": 4.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 420.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 676.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 330.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 71.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 128.18, + "success": true + } + ] + }, + { + "sessionId": "sess_b28a33feb62a4925b4b99e9e1542545e", + "createMs": 1153.95, + "connectMs": 187.72, + "taskMs": 1987.54, + "actionsCompleted": 10, + "actionsPerSecond": 5.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 347.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.85, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 558.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 363.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 231.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.03, + "success": true + } + ] + }, + { + "sessionId": "sess_514ae6509bfc416591b4200cc8b0ed92", + "createMs": 1084.73, + "connectMs": 188.89, + "taskMs": 2798.1, + "actionsCompleted": 10, + "actionsPerSecond": 3.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 384.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 206.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 580.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 717.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 220.39, + "success": true + } + ] + }, + { + "sessionId": "sess_0789aa9996174b98b918262488a7428e", + "createMs": 603.14, + "connectMs": 173.34, + "taskMs": 3564.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 398.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 326.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 402.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 903.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 450.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 558.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 110.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 293.49, + "success": true + } + ] + }, + { + "sessionId": "sess_c0df9f190d54440bab2cc65bc5a1e830", + "createMs": 972.5, + "connectMs": 209.19, + "taskMs": 2737.29, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 362.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 318.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 510.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 524.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 280.28, + "success": true + } + ] + }, + { + "sessionId": "sess_8a32abd8c03942b2a1bb36eb229de113", + "createMs": 848.44, + "connectMs": 230.11, + "taskMs": 3979.13, + "actionsCompleted": 10, + "actionsPerSecond": 2.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 444.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 443.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 380.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 986.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 276.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 455.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 803.99, + "success": true + } + ] + }, + { + "sessionId": "sess_3708cadb6e944fcaa8e030925fc7f83f", + "createMs": 690.46, + "connectMs": 209.03, + "taskMs": 2182.03, + "actionsCompleted": 10, + "actionsPerSecond": 4.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 392.08, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 260.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 534.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 299.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 291.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 148.4, + "success": true + } + ] + }, + { + "sessionId": "sess_7b9bd180602b4c0d9bfcad57c11e0168", + "createMs": 857.05, + "connectMs": 175.64, + "taskMs": 3457.23, + "actionsCompleted": 10, + "actionsPerSecond": 2.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 240.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 847.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 529.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 87.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 515.83, + "success": true + } + ] + }, + { + "sessionId": "sess_8cb3489fc0654b218fc4dcb9fd50d072", + "createMs": 1157.68, + "connectMs": 202.9, + "taskMs": 2688.23, + "actionsCompleted": 10, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 290.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 232.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 693.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 702.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 219.51, + "success": true + } + ] + }, + { + "sessionId": "sess_4a918a959438412598c005d3bc01f8f0", + "createMs": 602.65, + "connectMs": 209.18, + "taskMs": 2188.34, + "actionsCompleted": 10, + "actionsPerSecond": 4.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 378.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 631.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 280.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 218.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.08, + "success": true + } + ] + }, + { + "sessionId": "sess_1fd363c799ff44b98669972bc430d1d4", + "createMs": 1067.82, + "connectMs": 208.79, + "taskMs": 2222.62, + "actionsCompleted": 10, + "actionsPerSecond": 4.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 380.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 633.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 438.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.58, + "success": true + } + ] + }, + { + "sessionId": "sess_e99fb673f640439bb81912ee0512b9ad", + "createMs": 848.12, + "connectMs": 229.71, + "taskMs": 2913.25, + "actionsCompleted": 10, + "actionsPerSecond": 3.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1017.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 473.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 422.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.34, + "success": true + } + ] + }, + { + "sessionId": "sess_02b79325d9a3426590cb577d12585f29", + "createMs": 690.29, + "connectMs": 191.47, + "taskMs": 2588.73, + "actionsCompleted": 10, + "actionsPerSecond": 3.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 570.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 317.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 551.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 412.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 244.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.88, + "success": true + } + ] + }, + { + "sessionId": "sess_069d2fecb620440ab859ad6f64f2a5d9", + "createMs": 741.77, + "connectMs": 184.93, + "taskMs": 2508.83, + "actionsCompleted": 10, + "actionsPerSecond": 3.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 269.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 201.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 816.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 292.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.9, + "success": true + } + ] + }, + { + "sessionId": "sess_6e9139e6c04242879a33ce2e5993dfb1", + "createMs": 685.77, + "connectMs": 187.47, + "taskMs": 2874.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 442.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 218.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 277.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 695.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 501.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 504.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 117.85, + "success": true + } + ] + }, + { + "sessionId": "sess_4e8cbf2d71db4016bbe906f806481583", + "createMs": 1122.14, + "connectMs": 185.93, + "taskMs": 3936.84, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 643.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 328.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1239.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 510.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 265.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 178.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 566.02, + "success": true + } + ] + }, + { + "sessionId": "sess_1934aceb6244433aa20343cef131e09a", + "createMs": 1080.06, + "connectMs": 221.28, + "taskMs": 3444.23, + "actionsCompleted": 10, + "actionsPerSecond": 2.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1021.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 157.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 596.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 613.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 76.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 444.22, + "success": true + } + ] + }, + { + "sessionId": "sess_25005f072326468399f8a04626ad791b", + "createMs": 613.18, + "connectMs": 209.18, + "taskMs": 2823.88, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 399.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 281.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 706.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 576.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.73, + "success": true + } + ] + }, + { + "sessionId": "sess_1ba281ee54fc4ec683af6e1920f13768", + "createMs": 1012.48, + "connectMs": 231.86, + "taskMs": 4017.21, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 497.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 440.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 315.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 740.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 865.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 279.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 535.24, + "success": true + } + ] + }, + { + "sessionId": "sess_8fa855abae1949f5a9b1fa8132abe175", + "createMs": 690.14, + "connectMs": 191.21, + "taskMs": 2287.54, + "actionsCompleted": 10, + "actionsPerSecond": 4.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 449.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 212.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 204.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 516.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 215.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.29, + "success": true + } + ] + }, + { + "sessionId": "sess_a3d39de66c9f47f9b49da78f4836314f", + "createMs": 1016.53, + "connectMs": 209.6, + "taskMs": 2364.51, + "actionsCompleted": 10, + "actionsPerSecond": 4.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 343.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 218.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 187.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 528, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 275.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.19, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 68.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.68, + "success": true + } + ] + }, + { + "sessionId": "sess_4b9092d7a2f34717ae8d2fc16ec39d07", + "createMs": 980.65, + "connectMs": 229.57, + "taskMs": 2466.4, + "actionsCompleted": 10, + "actionsPerSecond": 4.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 322.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 231.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 185.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 730.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 530.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.58, + "success": true + } + ] + }, + { + "sessionId": "sess_b3a6e32e43b14a6d9634998dcc4f5d02", + "createMs": 1125.31, + "connectMs": 208.94, + "taskMs": 10878.94, + "actionsCompleted": 4, + "actionsPerSecond": 0.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 440.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 221.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 185.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.5, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 22 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "sess_540c9d10e94442edbdada2ed6b8f7ad9", + "createMs": 885.67, + "connectMs": 175.35, + "taskMs": 3184.57, + "actionsCompleted": 10, + "actionsPerSecond": 3.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 766.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 374.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 743.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 389.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 321.01, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 1160.14, + "p95": 1160.14, + "p99": 1160.14, + "samples": 1 + }, + "connectMs": { + "median": 232.67, + "p95": 232.67, + "p99": 232.67, + "samples": 1 + }, + "taskMs": { + "median": 4017.21, + "p95": 4017.21, + "p99": 4017.21, + "samples": 1 + }, + "loopMs": { + "median": 2761.78, + "p95": 3936.84, + "p99": 3979.13, + "samples": 24 + }, + "actionsPerSecond": { + "median": 22.42, + "p95": 22.42, + "p99": 22.42, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.59, + "p95": 4.57, + "p99": 4.58, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 398.97, + "p95": 766.32, + "p99": 1017.16, + "samples": 25 + }, + "waitForSelector": { + "median": 281.67, + "p95": 576.62, + "p99": 717.48, + "samples": 73 + }, + "screenshot": { + "median": 260.71, + "p95": 455.44, + "p99": 504.83, + "samples": 49 + }, + "textContent": { + "median": 16.86, + "p95": 46.38, + "p99": 70.41, + "samples": 49 + }, + "click": { + "median": 654.69, + "p95": 903.43, + "p99": 986.62, + "samples": 24 + }, + "goBack": { + "median": 67.29, + "p95": 118.22, + "p99": 178.89, + "samples": 24 + } + } + }, + "compositeScore": 83.88, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c25/latest.json b/results/browser-concurrent/c25/latest.json new file mode 100644 index 00000000..5165f616 --- /dev/null +++ b/results/browser-concurrent/c25/latest.json @@ -0,0 +1,9825 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.735Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 25, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 508.67, + "connectMs": 330.3, + "taskMs": 11695.77, + "releaseMs": 858.04, + "totalMs": 13406.44, + "aggregateActionsPerSecond": 20.86, + "sessions": [ + { + "sessionId": "0521b903-f875-4512-9220-9e35b722e284", + "createMs": 408.69, + "connectMs": 208.28, + "taskMs": 2277.92, + "actionsCompleted": 10, + "actionsPerSecond": 4.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.48, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 293.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 392.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 214.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.37, + "success": true + } + ] + }, + { + "sessionId": "3283d4ef-e983-422e-a1a5-ef01defd7db3", + "createMs": 422.72, + "connectMs": 329.1, + "taskMs": 2121.61, + "actionsCompleted": 10, + "actionsPerSecond": 4.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 755.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 421.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 214.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.44, + "success": true + } + ] + }, + { + "sessionId": "2d3cdba7-f1c2-4e3c-bf39-dac42a9d729d", + "createMs": 377.38, + "connectMs": 268.26, + "taskMs": 2447.5, + "actionsCompleted": 10, + "actionsPerSecond": 4.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 784.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 203.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 341.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.02, + "success": true + } + ] + }, + { + "sessionId": "c42331e4-71c3-47a8-a423-94819e7f0f65", + "createMs": 402.94, + "connectMs": 220.9, + "taskMs": 2886.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 713.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 294.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 452.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 600.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.34, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 257.88, + "success": true + } + ] + }, + { + "sessionId": "9ca26972-78f9-43ae-b36e-18f727c58f30", + "createMs": 359.33, + "connectMs": 202.52, + "taskMs": 2392.86, + "actionsCompleted": 10, + "actionsPerSecond": 4.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 453.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 268.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 413.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 160.26, + "success": true + } + ] + }, + { + "sessionId": "2188e286-ddc5-4fa4-94c5-3725d8822bf0", + "createMs": 361.96, + "connectMs": 220.87, + "taskMs": 2518.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 891.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 77.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 309.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 386, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 262.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.88, + "success": true + } + ] + }, + { + "sessionId": "76328932-5253-44f6-87df-8af8accbfc27", + "createMs": 391.93, + "connectMs": 201.08, + "taskMs": 2244.23, + "actionsCompleted": 10, + "actionsPerSecond": 4.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 791.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 127.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 218.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 423.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 179.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 167.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 274.54, + "success": true + } + ] + }, + { + "sessionId": "22e00577-6879-431e-928a-796e2febdd01", + "createMs": 409.09, + "connectMs": 226.36, + "taskMs": 2476.82, + "actionsCompleted": 10, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 884.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 377.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 245.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 298.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 301.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 211.14, + "success": true + } + ] + }, + { + "sessionId": "e521fa93-9428-46ea-99ff-f5d094e2ec5b", + "createMs": 405.07, + "connectMs": 220.21, + "taskMs": 2759.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 770.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 92.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 313.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 348.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 573.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 403.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.15, + "success": true + } + ] + }, + { + "sessionId": "0cf0c9eb-00aa-4547-9896-3170154db55d", + "createMs": 409.3, + "connectMs": 311.65, + "taskMs": 2327.1, + "actionsCompleted": 10, + "actionsPerSecond": 4.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 676.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 77.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 333.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 296.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.27, + "success": true + } + ] + }, + { + "sessionId": "9a69e8b3-3388-4a3f-9dac-7dfd0430a6c8", + "createMs": 418.95, + "connectMs": 228.08, + "taskMs": 2041.3, + "actionsCompleted": 10, + "actionsPerSecond": 4.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 677.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 134.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 375.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 231.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.93, + "success": true + } + ] + }, + { + "sessionId": "28db037c-4204-4765-ae76-9edbb7853a04", + "createMs": 414.63, + "connectMs": 225.65, + "taskMs": 2292.07, + "actionsCompleted": 10, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 668.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 92.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 219.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 375.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 277.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 277.7, + "success": true + } + ] + }, + { + "sessionId": "7f1d78af-dac1-413c-8dc7-5202336048e8", + "createMs": 507.32, + "connectMs": 226.78, + "taskMs": 2436.93, + "actionsCompleted": 10, + "actionsPerSecond": 4.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 852.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.73, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 497.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.61, + "success": true + } + ] + }, + { + "sessionId": "32114490-8997-48b7-9b21-93c4377cb5fd", + "createMs": 360.76, + "connectMs": 228.26, + "taskMs": 2619.86, + "actionsCompleted": 10, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 889.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 81.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 464.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 196.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 470.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 209.81, + "success": true + } + ] + }, + { + "sessionId": "56c0b5b5-f176-4b67-bb8f-3bd7b202321f", + "createMs": 419.36, + "connectMs": 219.84, + "taskMs": 2559.54, + "actionsCompleted": 10, + "actionsPerSecond": 3.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 330.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 344.9, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 172.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 726.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.07, + "success": true + } + ] + }, + { + "sessionId": "265ed6ad-39ce-46ca-83c9-1f82bdf7b166", + "createMs": 411.38, + "connectMs": 226.95, + "taskMs": 2964.91, + "actionsCompleted": 10, + "actionsPerSecond": 3.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1021.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 287.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 512.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 424.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.29, + "success": true + } + ] + }, + { + "sessionId": "8907df18-ae11-42ab-bf95-64cd3d0b63e8", + "createMs": 361.89, + "connectMs": 228.73, + "taskMs": 2682.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 953.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 347.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 332.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 244.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 386.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 251, + "success": true + } + ] + }, + { + "sessionId": "011a14d9-6445-43ba-8da6-f9d1211fc0ba", + "createMs": 373.44, + "connectMs": 282.12, + "taskMs": 3221.55, + "actionsCompleted": 10, + "actionsPerSecond": 3.1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 929.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 489.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 503.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 455.18, + "success": true + } + ] + }, + { + "sessionId": "fefcec19-488a-47ef-8a01-c8276dc83f56", + "createMs": 409.63, + "connectMs": 219.39, + "taskMs": 2742.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 936.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 306.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 213.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 390.95, + "success": true + } + ] + }, + { + "sessionId": "be999295-b197-4961-a1a0-aa1588cc98a0", + "createMs": 409, + "connectMs": 226.61, + "taskMs": 3147.85, + "actionsCompleted": 10, + "actionsPerSecond": 3.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1104.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 343.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 449.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 578.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 234.89, + "success": true + } + ] + }, + { + "sessionId": "12d7401c-271e-461d-b740-d6f1d7948233", + "createMs": 376.75, + "connectMs": 227.32, + "taskMs": 2601.18, + "actionsCompleted": 10, + "actionsPerSecond": 3.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 824.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 80.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 555.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.91, + "success": true + } + ] + }, + { + "sessionId": "411fc611-47a1-42f7-9379-54fb911e0a40", + "createMs": 361.84, + "connectMs": 219.99, + "taskMs": 2656.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 251.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 458.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 252.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 443.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.61, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.06, + "success": true + } + ] + }, + { + "sessionId": "33c2b1c2-4793-4b01-b756-654617a20217", + "createMs": 413.47, + "connectMs": 328.36, + "taskMs": 2642.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 860.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 344.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 491.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.12, + "success": true + } + ] + }, + { + "sessionId": "15bd2272-90b6-492a-a295-6588e51d1abe", + "createMs": 360.76, + "connectMs": 219.29, + "taskMs": 11693.66, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1133.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 307.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 245.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.35, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "f16fb012-8e3a-4fa1-9fbd-f75e022001fd", + "createMs": 415.84, + "connectMs": 236.26, + "taskMs": 2921.73, + "actionsCompleted": 10, + "actionsPerSecond": 3.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 882.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 262.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 571.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 262.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 338.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.91, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 508.67, + "p95": 508.67, + "p99": 508.67, + "samples": 1 + }, + "connectMs": { + "median": 330.3, + "p95": 330.3, + "p99": 330.3, + "samples": 1 + }, + "taskMs": { + "median": 3221.55, + "p95": 3221.55, + "p99": 3221.55, + "samples": 1 + }, + "loopMs": { + "median": 2580.36, + "p95": 2964.91, + "p99": 3147.85, + "samples": 24 + }, + "actionsPerSecond": { + "median": 20.86, + "p95": 20.86, + "p99": 20.86, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.84, + "p95": 4.46, + "p99": 4.71, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 824.41, + "p95": 1021.61, + "p99": 1104.36, + "samples": 25 + }, + "waitForSelector": { + "median": 197.02, + "p95": 390.95, + "p99": 503.63, + "samples": 73 + }, + "screenshot": { + "median": 307.52, + "p95": 469.02, + "p99": 491.16, + "samples": 49 + }, + "textContent": { + "median": 6.25, + "p95": 14.13, + "p99": 24.55, + "samples": 49 + }, + "click": { + "median": 389.02, + "p95": 497.71, + "p99": 555.65, + "samples": 24 + }, + "goBack": { + "median": 42.92, + "p95": 59.74, + "p99": 60.75, + "samples": 24 + } + } + }, + "compositeScore": 85.49, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 318.65, + "connectMs": 649.61, + "taskMs": 11052.23, + "releaseMs": 1204.27, + "totalMs": 13267.77, + "aggregateActionsPerSecond": 22.08, + "sessions": [ + { + "sessionId": "0ad75d2f-602d-48ac-9bf8-c30e2a50bdec", + "createMs": 228.17, + "connectMs": 185.82, + "taskMs": 3387.87, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 249.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 628.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 833.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 187.29, + "success": true + } + ] + }, + { + "sessionId": "0ed7e051-b39e-4875-9bb5-1579c640b948", + "createMs": 316.69, + "connectMs": 196.37, + "taskMs": 2610.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 592.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 244.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 629.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 326.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 239.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.46, + "success": true + } + ] + }, + { + "sessionId": "b3625515-fea5-4fb1-a50b-30af5a4012eb", + "createMs": 235.44, + "connectMs": 241.56, + "taskMs": 3256.31, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 605.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 318.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 386.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 725.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 497.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 430.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.73, + "success": true + } + ] + }, + { + "sessionId": "da963508-41a6-4753-ac6f-efd93fcc46a5", + "createMs": 225.26, + "connectMs": 241.98, + "taskMs": 3881.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 668.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 286.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 484.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 869.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 910.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 339.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206, + "success": true + } + ] + }, + { + "sessionId": "ce40f986-b0a4-4883-bc2b-41ab9cdb87b9", + "createMs": 317.22, + "connectMs": 206.19, + "taskMs": 3680.4, + "actionsCompleted": 10, + "actionsPerSecond": 2.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 426.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1278.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 431.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 145.07, + "success": true + } + ] + }, + { + "sessionId": "4b0a3aa9-a8e0-4b9c-bcd1-4c0165a5756d", + "createMs": 307.52, + "connectMs": 256.04, + "taskMs": 2691.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 223.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 253.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 651.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 430.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.38, + "success": true + } + ] + }, + { + "sessionId": "4edb7da9-08d8-4278-8ba5-715f85dec5d5", + "createMs": 232.9, + "connectMs": 292.38, + "taskMs": 3117.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 593.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 769.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 362.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.04, + "success": true + } + ] + }, + { + "sessionId": "689cbc70-e403-44fd-b597-e2ae5bfa9215", + "createMs": 306.3, + "connectMs": 298.27, + "taskMs": 3317.48, + "actionsCompleted": 10, + "actionsPerSecond": 3.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 776.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 560.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 697.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 356.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 370.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.01, + "success": true + } + ] + }, + { + "sessionId": "9a465d7a-e54f-417e-844d-eec600b6accd", + "createMs": 247.76, + "connectMs": 325.24, + "taskMs": 3358.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 669.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 278.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 715.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 781.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 308.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.05, + "success": true + } + ] + }, + { + "sessionId": "844e30a3-1db0-49fd-96c6-44892637f821", + "createMs": 305.68, + "connectMs": 302.89, + "taskMs": 2773.32, + "actionsCompleted": 10, + "actionsPerSecond": 3.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 678.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 599.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 567.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 158.31, + "success": true + } + ] + }, + { + "sessionId": "cfb45041-95f4-4151-8f23-8d5b83622818", + "createMs": 304.51, + "connectMs": 358.81, + "taskMs": 3330.58, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 841.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 374.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 850.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 337.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 383.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.96, + "success": true + } + ] + }, + { + "sessionId": "9743a32c-3f24-427b-b8a2-f177aea0c8e5", + "createMs": 232.39, + "connectMs": 331.51, + "taskMs": 2641.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 211.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 243.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 666.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 418.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 230.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.66, + "success": true + } + ] + }, + { + "sessionId": "61920233-253b-4561-b84f-a77023ba6fa2", + "createMs": 248.8, + "connectMs": 380.38, + "taskMs": 3399.91, + "actionsCompleted": 10, + "actionsPerSecond": 2.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 731.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 322.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 681.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 422.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 562.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.34, + "success": true + } + ] + }, + { + "sessionId": "0b641a6c-1396-4fb5-8467-98f27b1016aa", + "createMs": 236.23, + "connectMs": 378.57, + "taskMs": 3411.02, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 889.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 220.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1007.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 565.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 305.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.36, + "success": true + } + ] + }, + { + "sessionId": "565bc300-28b1-474e-8893-3ced3ce8cd03", + "createMs": 248.9, + "connectMs": 362.72, + "taskMs": 2651.5, + "actionsCompleted": 10, + "actionsPerSecond": 3.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 450.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 270.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 584.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 450.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 395.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.78, + "success": true + } + ] + }, + { + "sessionId": "cd421fcc-c163-441d-b3de-3ba4f5d684a2", + "createMs": 243.45, + "connectMs": 648.63, + "taskMs": 3745.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 700.25, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 206.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1024.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 605.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 516.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.94, + "success": true + } + ] + }, + { + "sessionId": "407a84b3-d40d-4988-a412-82065b64c0c6", + "createMs": 239.4, + "connectMs": 408.79, + "taskMs": 2895.6, + "actionsCompleted": 10, + "actionsPerSecond": 3.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 639.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 376.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 436.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.05, + "success": true + } + ] + }, + { + "sessionId": "31478c5d-74b5-4dbb-93e3-484bcfc9a1dc", + "createMs": 293.12, + "connectMs": 477.45, + "taskMs": 3567.2, + "actionsCompleted": 10, + "actionsPerSecond": 2.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 877.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 252.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 471.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 786.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 377.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.94, + "success": true + } + ] + }, + { + "sessionId": "9808843b-75b2-4c42-a570-85c78c4e1bf4", + "createMs": 233.61, + "connectMs": 456.84, + "taskMs": 3081.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 722.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 273.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 563.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 587.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.97, + "success": true + } + ] + }, + { + "sessionId": "cffdba63-03d6-44c7-9abc-9c3da1751106", + "createMs": 234.14, + "connectMs": 514.95, + "taskMs": 3186.14, + "actionsCompleted": 10, + "actionsPerSecond": 3.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 672.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 254.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 711.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 651.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.08, + "success": true + } + ] + }, + { + "sessionId": "b2e6b94a-95cb-4369-899d-6379d750d29a", + "createMs": 208.11, + "connectMs": 521.11, + "taskMs": 2781.43, + "actionsCompleted": 10, + "actionsPerSecond": 3.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 586.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 272.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 271.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 491.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.48, + "success": true + } + ] + }, + { + "sessionId": "540ce551-3d81-487b-974b-19757e2337e3", + "createMs": 231.37, + "connectMs": 551.09, + "taskMs": 3382.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 729.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 333.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 828.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 538.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.25, + "success": true + } + ] + }, + { + "sessionId": "59724802-f1c7-4b30-9c39-b1a18ac53231", + "createMs": 252.11, + "connectMs": 552.52, + "taskMs": 3163.18, + "actionsCompleted": 10, + "actionsPerSecond": 3.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 614.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 283.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 327.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 686.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 628.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.83, + "success": true + } + ] + }, + { + "sessionId": "36098a17-e506-441f-9bd3-1bb3a803c00e", + "createMs": 234.69, + "connectMs": 515.81, + "taskMs": 11050.91, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 659.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 9999.63, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "26c66b03-e7b7-4046-a925-f4cb749a31fe", + "createMs": 231.14, + "connectMs": 601.61, + "taskMs": 3738.62, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 994, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 292.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 283.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1088.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 458.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 195.69, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 318.65, + "p95": 318.65, + "p99": 318.65, + "samples": 1 + }, + "connectMs": { + "median": 649.61, + "p95": 649.61, + "p99": 649.61, + "samples": 1 + }, + "taskMs": { + "median": 3881.82, + "p95": 3881.82, + "p99": 3881.82, + "samples": 1 + }, + "loopMs": { + "median": 3286.89, + "p95": 3738.62, + "p99": 3745.59, + "samples": 24 + }, + "actionsPerSecond": { + "median": 22.08, + "p95": 22.08, + "p99": 22.08, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.01, + "p95": 3.77, + "p99": 3.79, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 672.92, + "p95": 877.65, + "p99": 889.09, + "samples": 25 + }, + "waitForSelector": { + "median": 253.58, + "p95": 567.1, + "p99": 628.72, + "samples": 73 + }, + "screenshot": { + "median": 339.26, + "p95": 489.46, + "p99": 560.87, + "samples": 49 + }, + "textContent": { + "median": 21.9, + "p95": 26.27, + "p99": 27.33, + "samples": 49 + }, + "click": { + "median": 713.19, + "p95": 1024.5, + "p99": 1088.83, + "samples": 24 + }, + "goBack": { + "median": 51.86, + "p95": 58.53, + "p99": 60.52, + "samples": 24 + } + } + }, + "compositeScore": 83.8, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 655.29, + "connectMs": 219.41, + "taskMs": 11257.75, + "releaseMs": 227.78, + "totalMs": 12380.82, + "aggregateActionsPerSecond": 21.67, + "sessions": [ + { + "sessionId": "47d2f21a-2fb7-4737-8292-8412925d029a", + "createMs": 653.58, + "connectMs": 165.41, + "taskMs": 3248.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 689.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 461.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 968.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 299.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.87, + "success": true + } + ] + }, + { + "sessionId": "651cd61b-d6ba-47a2-b7f1-c71170fe2702", + "createMs": 384.15, + "connectMs": 180.23, + "taskMs": 2738.7, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 651.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 665.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 313.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 292.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 87.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.09, + "success": true + } + ] + }, + { + "sessionId": "3e13ada6-6500-4087-b0d1-d2c056f383c5", + "createMs": 542.3, + "connectMs": 186.62, + "taskMs": 2879.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 628.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 355.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 526.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 530.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 88.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 234.85, + "success": true + } + ] + }, + { + "sessionId": "808c43e8-f733-45d8-87c1-89405ba6980e", + "createMs": 519.88, + "connectMs": 187.46, + "taskMs": 4425.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 758.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 494.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 995.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1015.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 670.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 196.99, + "success": true + } + ] + }, + { + "sessionId": "6954d6a6-0062-4831-a061-2676e3f6e72d", + "createMs": 522.63, + "connectMs": 179.19, + "taskMs": 3654.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 703.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 123.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 439.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 999.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 564.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 457.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 134.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.13, + "success": true + } + ] + }, + { + "sessionId": "a6f36627-42c0-46c4-b8a8-be780ce8b06e", + "createMs": 336.08, + "connectMs": 189.04, + "taskMs": 2728.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 117.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 340.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 520.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 459.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 356.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 99.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 153.07, + "success": true + } + ] + }, + { + "sessionId": "65b5f8fc-a1db-41ef-a682-f4169ce7c252", + "createMs": 569.08, + "connectMs": 189.67, + "taskMs": 3024.52, + "actionsCompleted": 10, + "actionsPerSecond": 3.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 672.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 130.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 463.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 771.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 321.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 313.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.78, + "success": true + } + ] + }, + { + "sessionId": "d2427ccc-e789-4588-9e6b-72e574cbeab0", + "createMs": 331.26, + "connectMs": 185.83, + "taskMs": 3031, + "actionsCompleted": 10, + "actionsPerSecond": 3.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 694.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 629.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 232.42, + "success": true + } + ] + }, + { + "sessionId": "6dd6e6da-9092-47b3-ba07-753e749318da", + "createMs": 540.39, + "connectMs": 189.89, + "taskMs": 4602.94, + "actionsCompleted": 10, + "actionsPerSecond": 2.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 762.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 128.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 949.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 518.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1065.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 820.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 204.24, + "success": true + } + ] + }, + { + "sessionId": "1b43b6f7-fa77-4441-982c-7130cce4505a", + "createMs": 565.12, + "connectMs": 177.76, + "taskMs": 3124, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 638.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 129.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 573.75, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 592.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 440.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 162.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.55, + "success": true + } + ] + }, + { + "sessionId": "080af1b8-6e1a-4981-b826-3316cc2e38dd", + "createMs": 585.9, + "connectMs": 187.05, + "taskMs": 2479.37, + "actionsCompleted": 10, + "actionsPerSecond": 4.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 559.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 400.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 437.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 289.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 389.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 100.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.72, + "success": true + } + ] + }, + { + "sessionId": "38a43ea9-89e3-4b21-9586-03b2c0037687", + "createMs": 551.07, + "connectMs": 183.15, + "taskMs": 3412.63, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 666.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 123.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 452.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1048.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 377.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 363.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.75, + "success": true + } + ] + }, + { + "sessionId": "92138a37-d4e1-483c-bd3a-dbb1aaf1fa98", + "createMs": 591.14, + "connectMs": 187.73, + "taskMs": 3659.25, + "actionsCompleted": 10, + "actionsPerSecond": 2.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 810.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 105.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 513.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1021.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 398.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 495.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.56, + "success": true + } + ] + }, + { + "sessionId": "5cd3852e-ddae-46a6-b6e8-3fd69a9fe3f5", + "createMs": 567.99, + "connectMs": 185.12, + "taskMs": 3774.1, + "actionsCompleted": 10, + "actionsPerSecond": 2.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 888.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 391.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 967.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 508.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 170.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 220.99, + "success": true + } + ] + }, + { + "sessionId": "ad9ab088-425b-4d81-a29a-5a3c86594742", + "createMs": 361.76, + "connectMs": 185.96, + "taskMs": 3366.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 721.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 454.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 748.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 455.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 144.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 208.77, + "success": true + } + ] + }, + { + "sessionId": "b13bdd26-9d64-4129-bd1d-1eb9f8461c07", + "createMs": 500.37, + "connectMs": 175.37, + "taskMs": 3708.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 770.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 417.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 907.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 657.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 113.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.63, + "success": true + } + ] + }, + { + "sessionId": "037a5859-054f-4b97-98d5-085af80c70b6", + "createMs": 489.53, + "connectMs": 213.75, + "taskMs": 3501.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 856.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 863.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 459.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 193.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.45, + "success": true + } + ] + }, + { + "sessionId": "5545bf7c-5420-4994-802c-0cb737380227", + "createMs": 572.67, + "connectMs": 189.96, + "taskMs": 3312.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 444.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 770.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 532.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 396.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 151.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.21, + "success": true + } + ] + }, + { + "sessionId": "25b676d0-1af8-4e3c-be5e-73b955cd063c", + "createMs": 601.14, + "connectMs": 205.3, + "taskMs": 3748.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1243.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 421.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 648.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.22, + "success": true + } + ] + }, + { + "sessionId": "4b241037-bbfa-4f6b-8446-6aa565139a05", + "createMs": 527.24, + "connectMs": 208.42, + "taskMs": 3804.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 719.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 770.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 661.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 742.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.23, + "success": true + } + ] + }, + { + "sessionId": "8d8df23a-4e0b-4600-b6ba-8b9eaeadc004", + "createMs": 602.58, + "connectMs": 206.56, + "taskMs": 3415.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 808.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 707.98, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 571.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.45, + "success": true + } + ] + }, + { + "sessionId": "77b091d9-dc54-4256-8a90-aea27f7ed164", + "createMs": 511.89, + "connectMs": 216.06, + "taskMs": 3896.63, + "actionsCompleted": 10, + "actionsPerSecond": 2.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 676.3, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 497.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 716.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 672.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 532.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 139.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 507.1, + "success": true + } + ] + }, + { + "sessionId": "ae8dd588-f6b0-4256-abe1-7c83402d0c3e", + "createMs": 582.3, + "connectMs": 218.52, + "taskMs": 3521.06, + "actionsCompleted": 10, + "actionsPerSecond": 2.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 449.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 805.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 680.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 405.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 148.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.61, + "success": true + } + ] + }, + { + "sessionId": "ad1785aa-84e9-4716-b7d9-42d54ea6a940", + "createMs": 429.11, + "connectMs": 207.54, + "taskMs": 11254.61, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 714.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 419.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.86, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "8b5088c2-ab1a-4426-8871-a2d298ce8a38", + "createMs": 482.81, + "connectMs": 214.61, + "taskMs": 3895.43, + "actionsCompleted": 10, + "actionsPerSecond": 2.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 955.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 935.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 431.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 583.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 206.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 236.93, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 655.29, + "p95": 655.29, + "p99": 655.29, + "samples": 1 + }, + "connectMs": { + "median": 219.41, + "p95": 219.41, + "p99": 219.41, + "samples": 1 + }, + "taskMs": { + "median": 4602.94, + "p95": 4602.94, + "p99": 4602.94, + "samples": 1 + }, + "loopMs": { + "median": 3458.77, + "p95": 3896.63, + "p99": 4425.98, + "samples": 24 + }, + "actionsPerSecond": { + "median": 21.67, + "p95": 21.67, + "p99": 21.67, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.86, + "p95": 3.65, + "p99": 3.67, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 703.11, + "p95": 888.55, + "p99": 955.11, + "samples": 25 + }, + "waitForSelector": { + "median": 196.99, + "p95": 648.48, + "p99": 672.5, + "samples": 73 + }, + "screenshot": { + "median": 447.29, + "p95": 583.48, + "p99": 742.65, + "samples": 49 + }, + "textContent": { + "median": 12.72, + "p95": 20.52, + "p99": 25.48, + "samples": 49 + }, + "click": { + "median": 770.54, + "p95": 999.44, + "p99": 1021.95, + "samples": 24 + }, + "goBack": { + "median": 135.59, + "p95": 170.65, + "p99": 193.19, + "samples": 24 + } + } + }, + "compositeScore": 83.04, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 10, + "createMs": 801.27, + "connectMs": 202.72, + "taskMs": 2261.56, + "releaseMs": 91.45, + "totalMs": 3370.41, + "aggregateActionsPerSecond": 44.22, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "henkjbgpae6gn5bxps5ctg3w", + "createMs": 189.18, + "connectMs": 98.18, + "taskMs": 1467.64, + "actionsCompleted": 10, + "actionsPerSecond": 6.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 160.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 290.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 230.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 180.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 44.16, + "success": true + } + ] + }, + { + "sessionId": "tllezmjw6us08d97whi3xnwx", + "createMs": 226.32, + "connectMs": 48.65, + "taskMs": 1343.99, + "actionsCompleted": 10, + "actionsPerSecond": 7.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 261.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 243.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 147.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 213.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 27.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 45.12, + "success": true + } + ] + }, + { + "sessionId": "kb0gc82i5htcykwoa04zx88j", + "createMs": 255.8, + "connectMs": 95.1, + "taskMs": 1712.79, + "actionsCompleted": 10, + "actionsPerSecond": 5.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 293.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 146.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 260.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 349.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 226.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 89.17, + "success": true + } + ] + }, + { + "sessionId": "e5hd7a121tq72umnr7mhfe49", + "createMs": 220.64, + "connectMs": 59.99, + "taskMs": 2108.96, + "actionsCompleted": 10, + "actionsPerSecond": 4.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 307.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 101.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 330.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 278.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 637.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 104.74, + "success": true + } + ] + }, + { + "sessionId": "cpc7lj0oa91f6gn3387arsza", + "createMs": 206.29, + "connectMs": 63.05, + "taskMs": 1410.47, + "actionsCompleted": 10, + "actionsPerSecond": 7.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 238.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 141.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 212.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 194.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 172.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 368.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 30.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 43, + "success": true + } + ] + }, + { + "sessionId": "tw2iwvcwkoco66phjrrt3a2e", + "createMs": 207.47, + "connectMs": 75.39, + "taskMs": 1456.77, + "actionsCompleted": 10, + "actionsPerSecond": 6.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 299.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 211.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 337.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 209.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 238.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 20.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.03, + "success": true + } + ] + }, + { + "sessionId": "oarhw9ud5ktnmrze2fx2gm55", + "createMs": 253.07, + "connectMs": 202.3, + "taskMs": 2260.64, + "actionsCompleted": 10, + "actionsPerSecond": 4.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 444.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 351.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 641.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 157.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 348.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 91.39, + "success": true + } + ] + }, + { + "sessionId": "b9uabuve06uyfeg4rtnrgbo0", + "createMs": 199.47, + "connectMs": 131.43, + "taskMs": 1245.14, + "actionsCompleted": 10, + "actionsPerSecond": 8.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 404.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 59.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 176.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 178.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 166.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 195.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 35.94, + "success": true + } + ] + }, + { + "sessionId": "pb9uf3caqw2rl83virh1br9a", + "createMs": 204.67, + "connectMs": 137.66, + "taskMs": 1813.61, + "actionsCompleted": 10, + "actionsPerSecond": 5.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 497.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 170.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 343.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 323.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 60.28, + "success": true + } + ] + }, + { + "sessionId": "cw0b5hmki4xecwlgdz8ap065", + "createMs": 225.85, + "connectMs": 161.81, + "taskMs": 1734.52, + "actionsCompleted": 10, + "actionsPerSecond": 5.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 257.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 291.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 267.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 333.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 56.7, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 801.27, + "p95": 801.27, + "p99": 801.27, + "samples": 1 + }, + "connectMs": { + "median": 202.72, + "p95": 202.72, + "p99": 202.72, + "samples": 1 + }, + "taskMs": { + "median": 2261.56, + "p95": 2261.56, + "p99": 2261.56, + "samples": 1 + }, + "loopMs": { + "median": 1590.22, + "p95": 2260.64, + "p99": 2260.64, + "samples": 10 + }, + "actionsPerSecond": { + "median": 44.22, + "p95": 44.22, + "p99": 44.22, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 6.33, + "p95": 8.03, + "p99": 8.03, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 301.3, + "p95": 497.36, + "p99": 497.36, + "samples": 10 + }, + "waitForSelector": { + "median": 144.11, + "p95": 333.25, + "p99": 343.79, + "samples": 30 + }, + "screenshot": { + "median": 249.58, + "p95": 351.44, + "p99": 351.44, + "samples": 20 + }, + "textContent": { + "median": 4.15, + "p95": 11.63, + "p99": 11.63, + "samples": 20 + }, + "click": { + "median": 272.75, + "p95": 641.39, + "p99": 641.39, + "samples": 10 + }, + "goBack": { + "median": 32.88, + "p95": 47.1, + "p99": 47.1, + "samples": 10 + } + } + }, + "compositeScore": 37.21, + "successRate": 0.4, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 6, + "createMs": 3470.34, + "connectMs": 12121.56, + "taskMs": 79264.21, + "releaseMs": 1912.97, + "totalMs": 97232.43, + "aggregateActionsPerSecond": 0.76, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "83601839-a7e3-4618-a1ca-8d9253118b7d", + "createMs": 1109.49, + "connectMs": 3428.58, + "taskMs": 68393.85, + "actionsCompleted": 10, + "actionsPerSecond": 0.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2335.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6946.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 16974.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 411.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 20942.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5127.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 7073.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 504.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 2506.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5571.25, + "success": true + } + ] + }, + { + "sessionId": "267ff864-6852-4887-9cff-fbf8d17c8bb4", + "createMs": 1275.44, + "connectMs": 3286.03, + "taskMs": 48040.52, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1298.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 7012.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4703.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 453.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13424.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3887.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 10593.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 416.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1182.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5069.43, + "success": true + } + ] + }, + { + "sessionId": "edb002f0-d538-426c-a0f4-f749b069f857", + "createMs": 1128.57, + "connectMs": 12120.22, + "taskMs": 49107.94, + "actionsCompleted": 10, + "actionsPerSecond": 0.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1990.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3358.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6514.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 1069.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14926.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5591.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 8764.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 395.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1183.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5313.91, + "success": true + } + ] + }, + { + "sessionId": "42b65ddd-38cd-4014-9695-7e6655239339", + "createMs": 1260.79, + "connectMs": 3035.36, + "taskMs": 39757.06, + "actionsCompleted": 10, + "actionsPerSecond": 0.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2032.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3258.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6402.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 454.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16193.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3076.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3794.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 421.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1171.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2951.41, + "success": true + } + ] + }, + { + "sessionId": "5a78771d-0b47-4f9d-b071-25be9512bdf9", + "createMs": 2157.16, + "connectMs": 4190.3, + "taskMs": 79263.19, + "actionsCompleted": 10, + "actionsPerSecond": 0.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2039.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 7137.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 12028.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 401.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24475.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 6779.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 19791.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 418.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1063.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5127.57, + "success": true + } + ] + }, + { + "sessionId": "8bc4ee88-0930-4fce-80da-5e3434647480", + "createMs": 1997.14, + "connectMs": 2708.24, + "taskMs": 38894.17, + "actionsCompleted": 10, + "actionsPerSecond": 0.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1780.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5323.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5213.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 442.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15102.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2879.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3825.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 411.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 862.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3054, + "success": true + } + ] + } + ], + "maxLiveSessions": 6, + "maxConcurrentActions": 6, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 6, + "p95": 6, + "p99": 6, + "samples": 1 + }, + "createMs": { + "median": 3470.34, + "p95": 3470.34, + "p99": 3470.34, + "samples": 1 + }, + "connectMs": { + "median": 12121.56, + "p95": 12121.56, + "p99": 12121.56, + "samples": 1 + }, + "taskMs": { + "median": 79264.21, + "p95": 79264.21, + "p99": 79264.21, + "samples": 1 + }, + "loopMs": { + "median": 48574.23, + "p95": 79263.19, + "p99": 79263.19, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.76, + "p95": 0.76, + "p99": 0.76, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.21, + "p95": 0.26, + "p99": 0.26, + "samples": 6 + }, + "perActionType": { + "navigate": { + "median": 2011.62, + "p95": 2335.48, + "p99": 2335.48, + "samples": 6 + }, + "waitForSelector": { + "median": 5127.45, + "p95": 7137.41, + "p99": 7137.41, + "samples": 18 + }, + "screenshot": { + "median": 6794.33, + "p95": 19791.32, + "p99": 19791.32, + "samples": 12 + }, + "textContent": { + "median": 419.84, + "p95": 1069.54, + "p99": 1069.54, + "samples": 12 + }, + "click": { + "median": 15647.95, + "p95": 24475.44, + "p99": 24475.44, + "samples": 6 + }, + "goBack": { + "median": 1177.3, + "p95": 2506.04, + "p99": 2506.04, + "samples": 6 + } + } + }, + "compositeScore": 9.2, + "successRate": 0.24, + "sessionCeiling": 6, + "concurrencyAchieved": 6, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 5, + "createMs": 8426.4, + "connectMs": 1386.33, + "taskMs": 6258.71, + "releaseMs": 2696.93, + "totalMs": 18833.47, + "aggregateActionsPerSecond": 7.99, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "08c137f0-fa80-4fa3-8993-4bce0fb6f002", + "createMs": 1150.29, + "connectMs": 461.22, + "taskMs": 5841.23, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1354.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 501.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 796.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1604.9, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 428.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 540.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 122.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 389.49, + "success": true + } + ] + }, + { + "sessionId": "9b2cd848-b983-4ea9-b65f-e11fbae449c0", + "createMs": 1160.36, + "connectMs": 508.05, + "taskMs": 4662.55, + "actionsCompleted": 10, + "actionsPerSecond": 2.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 511.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 644.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1369.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 447.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 523.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 411.15, + "success": true + } + ] + }, + { + "sessionId": "1f70e851-91c0-4c6b-a8eb-3bb20a6d72c8", + "createMs": 1104.28, + "connectMs": 508.47, + "taskMs": 6256.15, + "actionsCompleted": 10, + "actionsPerSecond": 1.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1327.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 558.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 698.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 58.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1657.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 541.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 737.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 141.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 476.51, + "success": true + } + ] + }, + { + "sessionId": "5d0ae306-bf86-4c35-bade-756e8148471d", + "createMs": 1886.89, + "connectMs": 396.1, + "taskMs": 6171.7, + "actionsCompleted": 10, + "actionsPerSecond": 1.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1316.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 493.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 616.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1678.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 788.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 643.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 121.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 405.63, + "success": true + } + ] + }, + { + "sessionId": "25079978-5372-41cd-a80b-2d754510eae0", + "createMs": 1132.05, + "connectMs": 1384.67, + "taskMs": 5861.29, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 470.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 485.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 630.91, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2391.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 649.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 583.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 418.8, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 8426.4, + "p95": 8426.4, + "p99": 8426.4, + "samples": 1 + }, + "connectMs": { + "median": 1386.33, + "p95": 1386.33, + "p99": 1386.33, + "samples": 1 + }, + "taskMs": { + "median": 6258.71, + "p95": 6258.71, + "p99": 6258.71, + "samples": 1 + }, + "loopMs": { + "median": 5861.29, + "p95": 6256.15, + "p99": 6256.15, + "samples": 5 + }, + "actionsPerSecond": { + "median": 7.99, + "p95": 7.99, + "p99": 7.99, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.71, + "p95": 2.14, + "p99": 2.14, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1316.89, + "p95": 1354.99, + "p99": 1354.99, + "samples": 5 + }, + "waitForSelector": { + "median": 485.8, + "p95": 788.09, + "p99": 788.09, + "samples": 15 + }, + "screenshot": { + "median": 637.03, + "p95": 796.15, + "p99": 796.15, + "samples": 10 + }, + "textContent": { + "median": 54.15, + "p95": 58.79, + "p99": 58.79, + "samples": 10 + }, + "click": { + "median": 1657.87, + "p95": 2391.46, + "p99": 2391.46, + "samples": 5 + }, + "goBack": { + "median": 122.63, + "p95": 141.04, + "p99": 141.04, + "samples": 5 + } + } + }, + "compositeScore": 14.83, + "successRate": 0.2, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 25, + "rounds": [ + { + "sessionsAttempted": 25, + "sessionsAlive": 25, + "createMs": 1160.14, + "connectMs": 232.67, + "taskMs": 10880.99, + "releaseMs": 322.76, + "totalMs": 12610.47, + "aggregateActionsPerSecond": 22.42, + "sessions": [ + { + "sessionId": "sess_406e3f2cf5e741e582b7d8fd75b36e19", + "createMs": 499.69, + "connectMs": 172.55, + "taskMs": 2786.28, + "actionsCompleted": 10, + "actionsPerSecond": 3.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 274.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 350.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 265.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 844.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 475.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 220.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 95.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.71, + "success": true + } + ] + }, + { + "sessionId": "sess_e6f5264bf6ad42a58f5ee2f46193a70a", + "createMs": 1064.28, + "connectMs": 221.5, + "taskMs": 2322.04, + "actionsCompleted": 10, + "actionsPerSecond": 4.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 420.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 201.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 676.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 330.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 71.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 128.18, + "success": true + } + ] + }, + { + "sessionId": "sess_b28a33feb62a4925b4b99e9e1542545e", + "createMs": 1153.95, + "connectMs": 187.72, + "taskMs": 1987.54, + "actionsCompleted": 10, + "actionsPerSecond": 5.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 347.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 170.85, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 558.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 363.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 231.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.03, + "success": true + } + ] + }, + { + "sessionId": "sess_514ae6509bfc416591b4200cc8b0ed92", + "createMs": 1084.73, + "connectMs": 188.89, + "taskMs": 2798.1, + "actionsCompleted": 10, + "actionsPerSecond": 3.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 384.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 121.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 206.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 580.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 717.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 220.39, + "success": true + } + ] + }, + { + "sessionId": "sess_0789aa9996174b98b918262488a7428e", + "createMs": 603.14, + "connectMs": 173.34, + "taskMs": 3564.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 398.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 326.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 402.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 903.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 450.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 558.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 110.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 293.49, + "success": true + } + ] + }, + { + "sessionId": "sess_c0df9f190d54440bab2cc65bc5a1e830", + "createMs": 972.5, + "connectMs": 209.19, + "taskMs": 2737.29, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 362.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 318.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 510.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 524.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 280.28, + "success": true + } + ] + }, + { + "sessionId": "sess_8a32abd8c03942b2a1bb36eb229de113", + "createMs": 848.44, + "connectMs": 230.11, + "taskMs": 3979.13, + "actionsCompleted": 10, + "actionsPerSecond": 2.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 444.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 443.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 380.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 986.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 276.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 455.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 803.99, + "success": true + } + ] + }, + { + "sessionId": "sess_3708cadb6e944fcaa8e030925fc7f83f", + "createMs": 690.46, + "connectMs": 209.03, + "taskMs": 2182.03, + "actionsCompleted": 10, + "actionsPerSecond": 4.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 392.08, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 260.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 534.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 299.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 291.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 148.4, + "success": true + } + ] + }, + { + "sessionId": "sess_7b9bd180602b4c0d9bfcad57c11e0168", + "createMs": 857.05, + "connectMs": 175.64, + "taskMs": 3457.23, + "actionsCompleted": 10, + "actionsPerSecond": 2.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 302.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 240.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 847.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 529.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 87.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 515.83, + "success": true + } + ] + }, + { + "sessionId": "sess_8cb3489fc0654b218fc4dcb9fd50d072", + "createMs": 1157.68, + "connectMs": 202.9, + "taskMs": 2688.23, + "actionsCompleted": 10, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 290.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 232.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 693.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 702.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 273.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 219.51, + "success": true + } + ] + }, + { + "sessionId": "sess_4a918a959438412598c005d3bc01f8f0", + "createMs": 602.65, + "connectMs": 209.18, + "taskMs": 2188.34, + "actionsCompleted": 10, + "actionsPerSecond": 4.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 378.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 631.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 280.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 218.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.08, + "success": true + } + ] + }, + { + "sessionId": "sess_1fd363c799ff44b98669972bc430d1d4", + "createMs": 1067.82, + "connectMs": 208.79, + "taskMs": 2222.62, + "actionsCompleted": 10, + "actionsPerSecond": 4.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 380.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 198.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 633.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 438.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 206.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.58, + "success": true + } + ] + }, + { + "sessionId": "sess_e99fb673f640439bb81912ee0512b9ad", + "createMs": 848.12, + "connectMs": 229.71, + "taskMs": 2913.25, + "actionsCompleted": 10, + "actionsPerSecond": 3.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1017.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 473.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 422.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.34, + "success": true + } + ] + }, + { + "sessionId": "sess_02b79325d9a3426590cb577d12585f29", + "createMs": 690.29, + "connectMs": 191.47, + "taskMs": 2588.73, + "actionsCompleted": 10, + "actionsPerSecond": 3.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 570.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 317.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 551.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 412.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 244.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.88, + "success": true + } + ] + }, + { + "sessionId": "sess_069d2fecb620440ab859ad6f64f2a5d9", + "createMs": 741.77, + "connectMs": 184.93, + "taskMs": 2508.83, + "actionsCompleted": 10, + "actionsPerSecond": 3.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 269.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 201.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 816.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 292.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.9, + "success": true + } + ] + }, + { + "sessionId": "sess_6e9139e6c04242879a33ce2e5993dfb1", + "createMs": 685.77, + "connectMs": 187.47, + "taskMs": 2874.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 442.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 218.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 277.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 695.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 501.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 504.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 117.85, + "success": true + } + ] + }, + { + "sessionId": "sess_4e8cbf2d71db4016bbe906f806481583", + "createMs": 1122.14, + "connectMs": 185.93, + "taskMs": 3936.84, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 643.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 328.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1239.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 510.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 265.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 178.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 566.02, + "success": true + } + ] + }, + { + "sessionId": "sess_1934aceb6244433aa20343cef131e09a", + "createMs": 1080.06, + "connectMs": 221.28, + "taskMs": 3444.23, + "actionsCompleted": 10, + "actionsPerSecond": 2.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1021.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 157.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 596.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 613.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 76.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 444.22, + "success": true + } + ] + }, + { + "sessionId": "sess_25005f072326468399f8a04626ad791b", + "createMs": 613.18, + "connectMs": 209.18, + "taskMs": 2823.88, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 399.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 281.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 706.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 576.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 272.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.73, + "success": true + } + ] + }, + { + "sessionId": "sess_1ba281ee54fc4ec683af6e1920f13768", + "createMs": 1012.48, + "connectMs": 231.86, + "taskMs": 4017.21, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 497.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 440.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 315.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 740.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 865.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 279.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 535.24, + "success": true + } + ] + }, + { + "sessionId": "sess_8fa855abae1949f5a9b1fa8132abe175", + "createMs": 690.14, + "connectMs": 191.21, + "taskMs": 2287.54, + "actionsCompleted": 10, + "actionsPerSecond": 4.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 449.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 212.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 204.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 70.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 516.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 215.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.29, + "success": true + } + ] + }, + { + "sessionId": "sess_a3d39de66c9f47f9b49da78f4836314f", + "createMs": 1016.53, + "connectMs": 209.6, + "taskMs": 2364.51, + "actionsCompleted": 10, + "actionsPerSecond": 4.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 343.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 218.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 187.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 528, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 275.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.19, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 68.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.68, + "success": true + } + ] + }, + { + "sessionId": "sess_4b9092d7a2f34717ae8d2fc16ec39d07", + "createMs": 980.65, + "connectMs": 229.57, + "taskMs": 2466.4, + "actionsCompleted": 10, + "actionsPerSecond": 4.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 322.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 231.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 185.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 730.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 530.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.58, + "success": true + } + ] + }, + { + "sessionId": "sess_b3a6e32e43b14a6d9634998dcc4f5d02", + "createMs": 1125.31, + "connectMs": 208.94, + "taskMs": 10878.94, + "actionsCompleted": 4, + "actionsPerSecond": 0.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 440.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 221.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 185.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10001.5, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 22 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "sess_540c9d10e94442edbdada2ed6b8f7ad9", + "createMs": 885.67, + "connectMs": 175.35, + "taskMs": 3184.57, + "actionsCompleted": 10, + "actionsPerSecond": 3.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 766.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 374.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 743.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 389.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 321.01, + "success": true + } + ] + } + ], + "maxLiveSessions": 25, + "maxConcurrentActions": 25, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 25, + "p95": 25, + "p99": 25, + "samples": 1 + }, + "createMs": { + "median": 1160.14, + "p95": 1160.14, + "p99": 1160.14, + "samples": 1 + }, + "connectMs": { + "median": 232.67, + "p95": 232.67, + "p99": 232.67, + "samples": 1 + }, + "taskMs": { + "median": 4017.21, + "p95": 4017.21, + "p99": 4017.21, + "samples": 1 + }, + "loopMs": { + "median": 2761.78, + "p95": 3936.84, + "p99": 3979.13, + "samples": 24 + }, + "actionsPerSecond": { + "median": 22.42, + "p95": 22.42, + "p99": 22.42, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.59, + "p95": 4.57, + "p99": 4.58, + "samples": 25 + }, + "perActionType": { + "navigate": { + "median": 398.97, + "p95": 766.32, + "p99": 1017.16, + "samples": 25 + }, + "waitForSelector": { + "median": 281.67, + "p95": 576.62, + "p99": 717.48, + "samples": 73 + }, + "screenshot": { + "median": 260.71, + "p95": 455.44, + "p99": 504.83, + "samples": 49 + }, + "textContent": { + "median": 16.86, + "p95": 46.38, + "p99": 70.41, + "samples": 49 + }, + "click": { + "median": 654.69, + "p95": 903.43, + "p99": 986.62, + "samples": 24 + }, + "goBack": { + "median": 67.29, + "p95": 118.22, + "p99": 178.89, + "samples": 24 + } + } + }, + "compositeScore": 83.88, + "successRate": 0.96, + "sessionCeiling": 25, + "concurrencyAchieved": 25, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c5/2026-08-14.json b/results/browser-concurrent/c5/2026-08-14.json new file mode 100644 index 00000000..b1d92975 --- /dev/null +++ b/results/browser-concurrent/c5/2026-08-14.json @@ -0,0 +1,9531 @@ +{ + "version": "1.0", + "timestamp": "2026-08-14T18:36:03.254Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 5, + "rounds": 1, + "actionsPerSession": 40, + "loopsPerSession": 4, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 353.05, + "connectMs": 300.73, + "taskMs": 10000.4, + "releaseMs": 273.43, + "totalMs": 10938.2, + "aggregateActionsPerSecond": 20, + "sessions": [ + { + "sessionId": "d4d7b55b-46e7-4742-a233-52e2cd2eb9bd", + "createMs": 314, + "connectMs": 256.93, + "taskMs": 7907.99, + "actionsCompleted": 40, + "actionsPerSecond": 5.06, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 861.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 235.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 250.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 266.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 219.57, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 303.4, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 68.33, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 202.29, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.89, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 262.23, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 410.52, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 285.3, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 43.46, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 229.28, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 266.19, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 160.8, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 224.03, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.55, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 225.09, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 387.69, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 261.5, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.03, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 35.01, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 232.83, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 280.36, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 106.64, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 157.86, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.98, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 298.88, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 314.86, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 333.68, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 34.36, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 260.4, + "success": true + } + ] + }, + { + "sessionId": "6928003c-7fae-44ff-b51f-3668f1ff5380", + "createMs": 351.24, + "connectMs": 300.08, + "taskMs": 9999.04, + "actionsCompleted": 40, + "actionsPerSecond": 4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1089.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 945.94, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 218.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 252.9, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 457.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 91.63, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 214.03, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 732.01, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 163.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 278.57, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.82, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 48.87, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 294.35, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 473.5, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 91.59, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 212.28, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 7.04, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 690.46, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 249.64, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 206.17, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 32.18, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 281.13, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 434.01, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 79.36, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 237.56, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.61, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 647.76, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 222.97, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 225.97, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.69, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 28.57, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 299.43, + "success": true + } + ] + }, + { + "sessionId": "93586424-a80f-4994-94d3-4af8866fb15a", + "createMs": 343.58, + "connectMs": 285.63, + "taskMs": 7760.24, + "actionsCompleted": 40, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 796.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 227.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 227.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 567.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 254.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 217.28, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 654.31, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 69.2, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 216, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.88, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 179.27, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 250.52, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 278.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 57.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 335.93, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 292.26, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 58.21, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 234.42, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.55, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 203.15, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 312.2, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 246.01, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 32.81, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 222.24, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 305.39, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 70.49, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 235.99, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.96, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 197.26, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 329.88, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 260.18, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 31.85, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 228.04, + "success": true + } + ] + }, + { + "sessionId": "93d18d41-105b-4811-b268-84df44106473", + "createMs": 314.4, + "connectMs": 263.7, + "taskMs": 7885.28, + "actionsCompleted": 40, + "actionsPerSecond": 5.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 799.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 210.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 243.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 611.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 258.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 222.17, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 273.67, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 59.28, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 197.88, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 217.32, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 458.79, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 331.7, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 7.04, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 50.49, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 148.54, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 282.59, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 71.17, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 168.66, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 5.22, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 190.63, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 316.36, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 337.19, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.63, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 36.92, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 196.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 323.17, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 58.17, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 141.38, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 25.07, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 166.75, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 400.59, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 616.82, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.47, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 68.32, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 205.32, + "success": true + } + ] + }, + { + "sessionId": "63fa858a-2367-4a07-af61-de0738913d78", + "createMs": 313.05, + "connectMs": 257.12, + "taskMs": 8156.9, + "actionsCompleted": 40, + "actionsPerSecond": 4.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 762.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 256.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 511.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 310.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 290.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.66, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 187.94, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 157.45, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 205.86, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.87, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 382.73, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 256.96, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 270.32, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.37, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 287.9, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 682.78, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 54.08, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 187.76, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 406.01, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 204.68, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 259.27, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.57, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 29.21, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 231.32, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 227.92, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 184.02, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 211.94, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.05, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 468.63, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 212.54, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 281.63, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 29.41, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 217.45, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 353.05, + "p95": 353.05, + "p99": 353.05, + "samples": 1 + }, + "connectMs": { + "median": 300.73, + "p95": 300.73, + "p99": 300.73, + "samples": 1 + }, + "taskMs": { + "median": 10000.4, + "p95": 10000.4, + "p99": 10000.4, + "samples": 1 + }, + "loopMs": { + "median": 2031.94, + "p95": 2511.73, + "p99": 2511.73, + "samples": 20 + }, + "actionsPerSecond": { + "median": 20, + "p95": 20, + "p99": 20, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.06, + "p95": 5.15, + "p99": 5.15, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 378.59, + "p95": 861.52, + "p99": 861.52, + "samples": 20 + }, + "waitForSelector": { + "median": 219.17, + "p95": 400.59, + "p99": 458.79, + "samples": 60 + }, + "screenshot": { + "median": 241.78, + "p95": 333.68, + "p99": 337.19, + "samples": 40 + }, + "textContent": { + "median": 5.7, + "p95": 7.61, + "p99": 7.98, + "samples": 40 + }, + "click": { + "median": 256.42, + "p95": 732.01, + "p99": 732.01, + "samples": 20 + }, + "goBack": { + "median": 36.38, + "p95": 64.82, + "p99": 64.82, + "samples": 20 + } + } + }, + "compositeScore": 91.22, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 268.56, + "connectMs": 162.72, + "taskMs": 10747.53, + "releaseMs": 125.73, + "totalMs": 11329.21, + "aggregateActionsPerSecond": 18.61, + "sessions": [ + { + "sessionId": "c0263b1a-ebb1-4d50-93e2-14eda175d926", + "createMs": 187.35, + "connectMs": 162.6, + "taskMs": 8712.78, + "actionsCompleted": 40, + "actionsPerSecond": 4.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 445.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 239.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 671.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 312.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 420.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 189.82, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 168.7, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 206.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 773.35, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 365.14, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 253.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 46.12, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 123.22, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 201.65, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 152.29, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 196.52, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 15.77, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 642.78, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 295.62, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 254.23, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 16.89, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 45.55, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 142.4, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 198.94, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 147.58, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 210.97, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 15.86, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 644.81, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 340.05, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 279.32, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 16.86, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 41.72, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 127.93, + "success": true + } + ] + }, + { + "sessionId": "9d4f5d1c-5771-4ae2-a89c-613c2b540538", + "createMs": 266.63, + "connectMs": 142.84, + "taskMs": 10746.62, + "actionsCompleted": 40, + "actionsPerSecond": 3.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 795.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 234.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 301.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 940.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 345.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 161.14, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 303.41, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 254.42, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 281.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 20.6, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 936.76, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 244.35, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 277.23, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 18.32, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 46.64, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 148.21, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 347.54, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 175.19, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 261, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 20.03, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 891.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 224.99, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 330.35, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.32, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 50.31, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 143.02, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 331.02, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 194.01, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 310.02, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 20.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 950.58, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 262.26, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 338.95, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 19.57, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 48.83, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 146.28, + "success": true + } + ] + }, + { + "sessionId": "84b395fd-a6d0-4002-8d24-82aae672f09a", + "createMs": 241.6, + "connectMs": 142.56, + "taskMs": 9057.35, + "actionsCompleted": 40, + "actionsPerSecond": 4.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 526.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 253.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 651.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 579.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 248.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.34, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 208.4, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 204.89, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 238.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 17.99, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 506.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 343.55, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 375.81, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 18.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 44.64, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 189.94, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 251.93, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 165.68, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 264.39, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 29.03, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 495.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 373.64, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 274.08, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.88, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 43.63, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 148.29, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 221.18, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 163.24, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 236.72, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 18.01, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 582.99, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 366.31, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 260.35, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 18.79, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 47.93, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 160.18, + "success": true + } + ] + }, + { + "sessionId": "cea1e0bd-e543-47de-b0bd-a7f91fcbd01b", + "createMs": 209.73, + "connectMs": 140.58, + "taskMs": 8596.31, + "actionsCompleted": 40, + "actionsPerSecond": 4.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 533.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 475.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 711.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 237.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.87, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 192.25, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 153.4, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 207.99, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 15.93, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 466.99, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 492.47, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 244.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 18.26, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 56.56, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 133.22, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 198.78, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 144.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 198.3, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16.14, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 455.03, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 482.86, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 229.43, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 17.29, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 43.21, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 130.48, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 236.55, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 150.52, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 220.21, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.64, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 484.36, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 452.54, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 235.27, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 16.97, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 55.56, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 138.13, + "success": true + } + ] + }, + { + "sessionId": "25465af1-1b4e-41f5-beb9-5c2239d44816", + "createMs": 211.4, + "connectMs": 141.42, + "taskMs": 9249.96, + "actionsCompleted": 40, + "actionsPerSecond": 4.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 515.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 266.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 245.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 681.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 375.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 298.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 232.34, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 172.49, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 238.12, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 772.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 277.16, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 268.31, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.55, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 130.69, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 246.28, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 160.44, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 253.08, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16.57, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 680.36, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 262.89, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 322.52, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 16.67, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 50.16, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 136.35, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 239.25, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 166.86, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 299.03, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.77, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 697.7, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 257.03, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 372.96, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 27.94, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 47.05, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 164.31, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 268.56, + "p95": 268.56, + "p99": 268.56, + "samples": 1 + }, + "connectMs": { + "median": 162.72, + "p95": 162.72, + "p99": 162.72, + "samples": 1 + }, + "taskMs": { + "median": 10747.53, + "p95": 10747.53, + "p99": 10747.53, + "samples": 1 + }, + "loopMs": { + "median": 2162.26, + "p95": 2767.72, + "p99": 2767.72, + "samples": 20 + }, + "actionsPerSecond": { + "median": 18.61, + "p95": 18.61, + "p99": 18.61, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.42, + "p95": 4.65, + "p99": 4.65, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 242.76, + "p95": 533.66, + "p99": 533.66, + "samples": 20 + }, + "waitForSelector": { + "median": 173.84, + "p95": 375.38, + "p99": 482.86, + "samples": 60 + }, + "screenshot": { + "median": 256.09, + "p95": 338.95, + "p99": 372.96, + "samples": 40 + }, + "textContent": { + "median": 17.54, + "p95": 20.22, + "p99": 20.6, + "samples": 40 + }, + "click": { + "median": 661.1, + "p95": 940.3, + "p99": 940.3, + "samples": 20 + }, + "goBack": { + "median": 47.49, + "p95": 72.82, + "p99": 72.82, + "samples": 20 + } + } + }, + "compositeScore": 90.38, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 3769.43, + "connectMs": 761.29, + "taskMs": 49558.58, + "releaseMs": 129.87, + "totalMs": 54431.45, + "aggregateActionsPerSecond": 4.04, + "sessions": [ + { + "sessionId": "67e9ffc3-c34d-4a99-b0b5-d9ee1e1ad48b", + "createMs": 2561.3, + "connectMs": 760.65, + "taskMs": 43118.55, + "actionsCompleted": 40, + "actionsPerSecond": 0.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1136.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 688.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1067.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2683.75, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1195.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1459.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 199.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 703.27, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 278.07, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 675.86, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1022.19, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 72.37, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3358.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1168.56, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1653.39, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 72.77, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 200.53, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1011.59, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 276.93, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 958.53, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1168.83, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 71.69, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 3248.82, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2336.22, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2863.67, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 73.2, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 195.52, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1051.79, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 402.11, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 937.31, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1121.25, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 72.79, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2906.09, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1137.22, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 4107.2, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 73.08, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 199.95, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1120.88, + "success": true + } + ] + }, + { + "sessionId": "a67153fb-262b-405c-baba-afbacaeb2e75", + "createMs": 1470.76, + "connectMs": 572.25, + "taskMs": 35785.96, + "actionsCompleted": 40, + "actionsPerSecond": 1.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1652.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 685.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 931.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2365.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 600.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 799.93, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 457.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 775.65, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 547.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 824.47, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 911.67, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 78.24, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2327.36, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 678.98, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 912.2, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 74.65, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 421.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1411.75, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 494.42, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 1128.47, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1232.8, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 78.96, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2422.45, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 976.68, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1072.44, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 77.01, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 403.12, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1132.58, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 582.67, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1233.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1359.53, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 78.77, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2392.9, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1176.75, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1338.98, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 75.12, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 415.48, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1502.79, + "success": true + } + ] + }, + { + "sessionId": "d3035a89-557d-43f9-9682-29163282b05c", + "createMs": 1758.03, + "connectMs": 570.71, + "taskMs": 49556.03, + "actionsCompleted": 40, + "actionsPerSecond": 0.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1162.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 661.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1372.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2097.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1591.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1312.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 211.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 794.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 528.17, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 620.15, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1686.33, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 141.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2009.78, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 5794.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1456.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 75.25, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 208.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 925.93, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 392.35, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 1844.44, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 3309.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 73.23, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2142.63, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 1677.34, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1730.74, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 75.74, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 213.2, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1078.5, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 421.98, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 981.38, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 4115.73, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 73.56, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2055.55, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1428.05, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 3995.07, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 76.2, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 221.05, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 850.66, + "success": true + } + ] + }, + { + "sessionId": "e10c6790-f9ea-47b1-8a4a-48a901eef956", + "createMs": 1498.52, + "connectMs": 571.09, + "taskMs": 25712.73, + "actionsCompleted": 40, + "actionsPerSecond": 1.56, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 782.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 671.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 733.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1903.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 989.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 856.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 213.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 546.02, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 299.96, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 554.81, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 705.15, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 76.77, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1896.9, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 866.2, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 799.24, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 77.12, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 196.42, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 546.23, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 296.42, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 561.48, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 692.56, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 76.36, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1903.5, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 785.57, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 895.56, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 76.26, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 215.62, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 597.36, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 300.42, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 550.29, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 770.01, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 72.96, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1889.04, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 960.13, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 900.8, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 76.47, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 208.18, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1020.55, + "success": true + } + ] + }, + { + "sessionId": "e4cb4dd8-6529-47b9-a949-36ba7ca03ad9", + "createMs": 3764.93, + "connectMs": 572.61, + "taskMs": 37912.04, + "actionsCompleted": 40, + "actionsPerSecond": 1.06, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1197.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 682.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 907.47, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2765.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 767.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1171.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 254.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 747.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 318.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 704.93, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1014.5, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 76.3, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2455.36, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1065.25, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1505.69, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 75.61, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 255.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 1136.71, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 391.86, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 1361.89, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1933.31, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 75.82, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 3348.56, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 1346.41, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1874.86, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 79.31, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 243.2, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1119.97, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 300.7, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1001.08, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1318.92, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 76, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2582.31, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 779.34, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1441.32, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 75.4, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 260.73, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1047.52, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 3769.43, + "p95": 3769.43, + "p99": 3769.43, + "samples": 1 + }, + "connectMs": { + "median": 761.29, + "p95": 761.29, + "p99": 761.29, + "samples": 1 + }, + "taskMs": { + "median": 49558.58, + "p95": 49558.58, + "p99": 49558.58, + "samples": 1 + }, + "loopMs": { + "median": 9150.21, + "p95": 13445.96, + "p99": 13445.96, + "samples": 20 + }, + "actionsPerSecond": { + "median": 4.04, + "p95": 4.04, + "p99": 4.04, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.06, + "p95": 1.56, + "p99": 1.56, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 412.05, + "p95": 1197.82, + "p99": 1197.82, + "samples": 20 + }, + "waitForSelector": { + "median": 968.4, + "p95": 1502.79, + "p99": 1677.34, + "samples": 60 + }, + "screenshot": { + "median": 1202.16, + "p95": 3309.77, + "p99": 3995.07, + "samples": 40 + }, + "textContent": { + "median": 75.33, + "p95": 78.77, + "p99": 78.96, + "samples": 40 + }, + "click": { + "median": 2379.23, + "p95": 3348.56, + "p99": 3348.56, + "samples": 20 + }, + "goBack": { + "median": 214.47, + "p95": 421.75, + "p99": 421.75, + "samples": 20 + } + } + }, + "compositeScore": 70.1, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 242.79, + "connectMs": 85.51, + "taskMs": 6346.16, + "releaseMs": 62.9, + "totalMs": 6753.84, + "aggregateActionsPerSecond": 31.52, + "sessions": [ + { + "sessionId": "o7nhwmkxissc3rjhd3tgr6dz", + "createMs": 241.43, + "connectMs": 56.44, + "taskMs": 4695.81, + "actionsCompleted": 40, + "actionsPerSecond": 8.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 227.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 229.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 203.32, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 202.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 304.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 25.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.88, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 144.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 47.98, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 209.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 169.99, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 119.44, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 322.75, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.15, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 25.72, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 53.04, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 123.67, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 49.17, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 248.17, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.74, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 181.96, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 121.77, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 285.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.3, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 24.28, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 44.92, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 110.6, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 53.71, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 214.3, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 204.78, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 239.72, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 276.7, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.88, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 22.66, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 43.74, + "success": true + } + ] + }, + { + "sessionId": "sfgc3vncmz51p7gs8wq5rh8y", + "createMs": 235.39, + "connectMs": 50.97, + "taskMs": 6343.04, + "actionsCompleted": 40, + "actionsPerSecond": 6.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 464.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 372.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 178.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 450.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 85.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 50.26, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 201.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 282.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 184.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 396.72, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 142.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 167.37, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.3, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 51.35, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 76.98, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 179.56, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 122.25, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 203.15, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.99, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 498.82, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 140.52, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 203.73, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.3, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 57.7, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 67.45, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 154.36, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 99.88, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 250.63, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.48, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 505.31, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 99.3, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 197.24, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.41, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 52.07, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 46.52, + "success": true + } + ] + }, + { + "sessionId": "lscg7blnf4s43bndbl149bj7", + "createMs": 240.34, + "connectMs": 85.11, + "taskMs": 5861.35, + "actionsCompleted": 40, + "actionsPerSecond": 6.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 945.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 207.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 173.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 576.96, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 443.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 25.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 53.82, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 165.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 104.14, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 159.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.9, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 173.22, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 213.4, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 207.48, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 22.22, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 45.54, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 114.27, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 78.12, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 176.94, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.75, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 189.41, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 166.2, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 251.12, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 23.61, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 47.52, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 172.78, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 76.5, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 155.28, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.19, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 182.77, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 253.2, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 189.76, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 24.75, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 47.58, + "success": true + } + ] + }, + { + "sessionId": "u8s8iz8nn8ngpuvzy2ok3j9w", + "createMs": 225.66, + "connectMs": 55.11, + "taskMs": 5091.85, + "actionsCompleted": 40, + "actionsPerSecond": 7.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 551.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 45.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 176.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 20.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 58.29, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 144.62, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 90.28, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 150.13, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 177.99, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 172.1, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 255.79, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.09, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 32.9, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 47.42, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 114.24, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 73.33, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 161.8, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.16, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 137.66, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 304.25, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 198.99, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 20.91, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 44.71, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 111.11, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 81.88, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 165.46, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 9.19, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 311.95, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 244.08, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 292.13, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 27.47, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 58.69, + "success": true + } + ] + }, + { + "sessionId": "tuj6ji2mme70b83n17rhnlk1", + "createMs": 229.15, + "connectMs": 63.35, + "taskMs": 4983.21, + "actionsCompleted": 40, + "actionsPerSecond": 8.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 365.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 153.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 207.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 248.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 156.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 354.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 58.44, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 153.06, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 82.97, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 212.66, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 241.42, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 137.95, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 280.39, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 33.72, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 58.49, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 114.2, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 57.6, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 221.95, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.06, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 283.82, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 81.42, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 224.56, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.12, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 30.11, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 39.84, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 125.64, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 98.74, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 212.5, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.95, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 266.94, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 99.84, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 242.44, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.21, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 33.18, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 33.17, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 242.79, + "p95": 242.79, + "p99": 242.79, + "samples": 1 + }, + "connectMs": { + "median": 85.51, + "p95": 85.51, + "p99": 85.51, + "samples": 1 + }, + "taskMs": { + "median": 6346.16, + "p95": 6346.16, + "p99": 6346.16, + "samples": 1 + }, + "loopMs": { + "median": 1192.1, + "p95": 1930.6, + "p99": 1930.6, + "samples": 20 + }, + "actionsPerSecond": { + "median": 31.52, + "p95": 31.52, + "p99": 31.52, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 7.86, + "p95": 8.52, + "p99": 8.52, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 153.71, + "p95": 551.43, + "p99": 551.43, + "samples": 20 + }, + "waitForSelector": { + "median": 82.42, + "p95": 253.2, + "p99": 304.25, + "samples": 60 + }, + "screenshot": { + "median": 213.48, + "p95": 304.05, + "p99": 322.75, + "samples": 40 + }, + "textContent": { + "median": 4.25, + "p95": 5.9, + "p99": 6.1, + "samples": 40 + }, + "click": { + "median": 204.05, + "p95": 498.82, + "p99": 498.82, + "samples": 20 + }, + "goBack": { + "median": 26.6, + "p95": 52.07, + "p99": 52.07, + "samples": 20 + } + } + }, + "compositeScore": 95.23, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 1294.66, + "connectMs": 2473.11, + "taskMs": 77813.81, + "releaseMs": 578.1, + "totalMs": 82511.89, + "aggregateActionsPerSecond": 2.57, + "sessions": [ + { + "sessionId": "6dc7dbb4-a267-4ac7-9d7a-562dbf35523c", + "createMs": 1163.64, + "connectMs": 1890.86, + "taskMs": 69583.06, + "actionsCompleted": 40, + "actionsPerSecond": 0.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1295.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3699.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1787.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 209.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 9116.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1148.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1204.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 123.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 266.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 785.41, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 334.32, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 836.11, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 919.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 111.93, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 4937.18, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1472.41, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2145.81, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 645.97, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 736.53, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 4195.41, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 6019.34, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 1655.69, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1388, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 95.67, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4147.87, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 1636.04, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2600.82, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 146.85, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 483.1, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1874.54, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 487.08, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1535.94, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1237.21, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 196.02, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 5829.06, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1113.55, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1358.69, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 125.1, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 365.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1314.88, + "success": true + } + ] + }, + { + "sessionId": "55b1de30-d10d-4138-895e-d805f1ae964e", + "createMs": 917.25, + "connectMs": 1270.09, + "taskMs": 49682.43, + "actionsCompleted": 40, + "actionsPerSecond": 0.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1526.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2123.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1832.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 92.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 5456.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 759.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1316.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 89.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 392.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 954.78, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 574.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 766.74, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1514.98, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 92.15, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3831.72, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 899.03, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1207.17, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 87.12, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 387.61, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 767.67, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 671.72, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 872.57, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 2146.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 128.97, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4840.06, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 632.61, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1868.54, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 451.37, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 869.68, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1853.22, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 1116.91, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 957.36, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1887.72, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 107.99, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 3669.71, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 609.85, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1079.36, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 69.52, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 340.19, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 838.09, + "success": true + } + ] + }, + { + "sessionId": "7e895f2e-18c5-4c57-8545-80072b4a8b25", + "createMs": 784.63, + "connectMs": 1890.07, + "taskMs": 64150.43, + "actionsCompleted": 40, + "actionsPerSecond": 0.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 4172.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1799.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2859.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 210.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6876.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1186.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1615.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 84.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 294.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 724.07, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 384.12, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 653.83, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1407.78, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 88.63, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2818.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 846.3, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1415.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 202.16, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 358.1, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 999.97, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 423.26, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 1931.17, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 5092.98, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 457.22, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 6401.15, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 886.77, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1943.04, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 122.36, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 335.84, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 821.86, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 463.05, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1274.69, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 2237.84, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 291.55, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 6757.41, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1411.86, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 2208.47, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 176.35, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 597.93, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1317.24, + "success": true + } + ] + }, + { + "sessionId": "bdf5aa58-cd3a-4a6a-a977-01d286ab5743", + "createMs": 1293.53, + "connectMs": 1130.19, + "taskMs": 40737.16, + "actionsCompleted": 40, + "actionsPerSecond": 0.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1026.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2493.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1537.73, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 84.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2689.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 987.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1415.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 127.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 296.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 757.8, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 376.11, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 707.26, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1185.71, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 146.71, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 3243.19, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 826.5, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 1324.12, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 80.38, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 251.95, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 660.32, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 352.22, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 752.86, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1163.58, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 116.42, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2551.69, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 833.95, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 1343.41, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 89.34, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1203.11, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 741.75, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 339.59, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 806, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 1285.56, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 141.65, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2717.12, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 2378.94, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 2513.48, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 157.84, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 331.94, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 697.02, + "success": true + } + ] + }, + { + "sessionId": "709af3d1-efb2-4d0f-ad48-76da22889772", + "createMs": 988.19, + "connectMs": 2472.2, + "taskMs": 77812.02, + "actionsCompleted": 40, + "actionsPerSecond": 0.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2294.93, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3250.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4459.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 188.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 7844.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 985.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1693.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 92.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 310.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 924.83, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 554.4, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 954.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 1909.78, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 237.92, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 6555.15, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 6526.49, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 2960.51, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 935.12, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 650.46, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 839.89, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 943.66, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 691.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 1662.3, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 91.61, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 5677.05, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2582.54, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2362.3, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 124, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 373.5, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 1171.8, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 620.88, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 1151.82, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 2113.98, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 145.2, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 4898.29, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 1649.45, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 4121.82, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 266.37, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 651.29, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 2345.69, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 1294.66, + "p95": 1294.66, + "p99": 1294.66, + "samples": 1 + }, + "connectMs": { + "median": 2473.11, + "p95": 2473.11, + "p99": 2473.11, + "samples": 1 + }, + "taskMs": { + "median": 77813.81, + "p95": 77813.81, + "p99": 77813.81, + "samples": 1 + }, + "loopMs": { + "median": 15111.27, + "p95": 22043.07, + "p99": 22043.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 2.57, + "p95": 2.57, + "p99": 2.57, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.62, + "p95": 0.98, + "p99": 0.98, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 597.48, + "p95": 4172.47, + "p99": 4172.47, + "samples": 20 + }, + "waitForSelector": { + "median": 971.33, + "p95": 2493.96, + "p99": 3250.11, + "samples": 60 + }, + "screenshot": { + "median": 1677.69, + "p95": 2960.51, + "p99": 4121.82, + "samples": 40 + }, + "textContent": { + "median": 126.51, + "p95": 451.37, + "p99": 457.22, + "samples": 40 + }, + "click": { + "median": 4917.73, + "p95": 7844.1, + "p99": 7844.1, + "samples": 20 + }, + "goBack": { + "median": 369.48, + "p95": 869.68, + "p99": 869.68, + "samples": 20 + } + } + }, + "compositeScore": 61.2, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 3500.66, + "connectMs": 3802.08, + "taskMs": 30351.87, + "releaseMs": 3368.67, + "totalMs": 41089.6, + "aggregateActionsPerSecond": 6.59, + "sessions": [ + { + "sessionId": "3c166de0-e46d-4b81-b312-2fe24a104d8f", + "createMs": 3498.62, + "connectMs": 2765.71, + "taskMs": 30350.35, + "actionsCompleted": 40, + "actionsPerSecond": 1.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 430.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 579.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 670.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 53.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2311.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 860.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 762.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 59.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 441.49, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 310.87, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 688.59, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 642.06, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 56.4, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2063.78, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4142.6, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 820.63, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 56.6, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 208.22, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 513.79, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 398.68, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 505.71, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 680.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 55.93, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2262.17, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 564.26, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 778.88, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 67.76, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 178.77, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 444.4, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 340.13, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 422.59, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 591.33, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 52.99, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2139.75, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3461.11, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 873.86, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 55.77, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 150.85, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 519.65, + "success": true + } + ] + }, + { + "sessionId": "d4eada68-c6e8-43e9-9653-5b97a457f376", + "createMs": 513.47, + "connectMs": 2734.89, + "taskMs": 29814.44, + "actionsCompleted": 40, + "actionsPerSecond": 1.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1296.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 513.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 652.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2282.27, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 473, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 612.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 135.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 442.25, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 319.91, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 445.69, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 658.75, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 55.86, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2387.58, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 3906.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 634, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 52.87, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 154.11, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 413.55, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 311.53, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 427.81, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 645.5, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 54.4, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2476.9, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 528.61, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 609.87, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 53.39, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 135.79, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 436.87, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 296.03, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 444.34, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 627.3, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 55.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2394.96, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3429.94, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 690.23, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 53.45, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 143.8, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 452.62, + "success": true + } + ] + }, + { + "sessionId": "11a734b0-75d1-4476-9c7b-22595ed814e7", + "createMs": 3477.4, + "connectMs": 2833.16, + "taskMs": 21631.49, + "actionsCompleted": 40, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 876.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 502.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 604.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 50.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1574.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 455.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 611.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 414.7, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 188.75, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 412.72, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 594.74, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 51.4, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1344.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 623.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 568.71, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 54.66, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 113.33, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 402.13, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 182.94, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 484.4, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 4048.86, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 51.03, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1360.66, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 470.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 574.78, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 52.12, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 116.79, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 390.79, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 181.77, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 387.21, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 575.34, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 50.21, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1496.58, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 420.8, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 590.28, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 52.18, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 116.51, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 407.66, + "success": true + } + ] + }, + { + "sessionId": "a9759149-7c90-418d-83a7-f6106bb95232", + "createMs": 2609.94, + "connectMs": 435.76, + "taskMs": 29985.07, + "actionsCompleted": 40, + "actionsPerSecond": 1.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 968.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 517.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 617.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 53.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1413.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5437.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 712.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 466.81, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 189.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 413.7, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 586.6, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 54.28, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1393.35, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 513.49, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 717.07, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 54.46, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 122.65, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 417.14, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 224.57, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 419.99, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 619.56, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 53.69, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1459.43, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 540.84, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 724.97, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 54.61, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 5156.91, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 500.88, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 204.16, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 431.95, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 584.84, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 53.19, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1405.15, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 549.22, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 1495.73, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 60.91, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 126.44, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 481.84, + "success": true + } + ] + }, + { + "sessionId": "d8d85764-cf0b-4ae9-9210-d513aafc6d5b", + "createMs": 984.47, + "connectMs": 3800.52, + "taskMs": 24317.25, + "actionsCompleted": 40, + "actionsPerSecond": 1.64, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 446.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 514.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 687.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2090.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 457.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 656.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 52.05, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 413.88, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 242.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 434.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 639.26, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 51.74, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1900.55, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 423.11, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 667.81, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 54.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 124.74, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3883.51, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 305.66, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 411.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 628.34, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 49.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1922.5, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 675.79, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 708.15, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 49.23, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 123.11, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 421.2, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 270.45, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 442.51, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 662.83, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 53.25, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1960.9, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 429.85, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 679.68, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 52.16, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 138.7, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 410.78, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 3500.66, + "p95": 3500.66, + "p99": 3500.66, + "samples": 1 + }, + "connectMs": { + "median": 3802.08, + "p95": 3802.08, + "p99": 3802.08, + "samples": 1 + }, + "taskMs": { + "median": 30351.87, + "p95": 30351.87, + "p99": 30351.87, + "samples": 1 + }, + "loopMs": { + "median": 6119.4, + "p95": 9755.45, + "p99": 9755.45, + "samples": 20 + }, + "actionsPerSecond": { + "median": 6.59, + "p95": 6.59, + "p99": 6.59, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.34, + "p95": 1.85, + "p99": 1.85, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 308.26, + "p95": 968.05, + "p99": 968.05, + "samples": 20 + }, + "waitForSelector": { + "median": 456.55, + "p95": 3429.94, + "p99": 3883.51, + "samples": 60 + }, + "screenshot": { + "median": 649.1, + "p95": 820.63, + "p99": 873.86, + "samples": 40 + }, + "textContent": { + "median": 53.75, + "p95": 56.6, + "p99": 59.98, + "samples": 40 + }, + "click": { + "median": 1941.7, + "p95": 2394.96, + "p99": 2394.96, + "samples": 20 + }, + "goBack": { + "median": 132.18, + "p95": 208.22, + "p99": 208.22, + "samples": 20 + } + } + }, + "compositeScore": 75.91, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 956.48, + "connectMs": 105.35, + "taskMs": 11336.25, + "releaseMs": 54.65, + "totalMs": 12491.07, + "aggregateActionsPerSecond": 17.64, + "sessions": [ + { + "sessionId": "sess_2ccc0fc25330494ca98b6d5a74b01b1c", + "createMs": 954.76, + "connectMs": 98.63, + "taskMs": 7633.85, + "actionsCompleted": 40, + "actionsPerSecond": 5.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 734.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 136.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 157.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 508.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 329.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 118.04, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 199.66, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 61.96, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 277.25, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.34, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 271.2, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 603.11, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 213.12, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.72, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.21, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 111.82, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 198.31, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 129, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 209, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 7.71, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 299.69, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 212.54, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 424.38, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8.55, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 50.69, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 148.98, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 209.02, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 175.49, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 175.91, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.1, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 274.84, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 463.19, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 292.82, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 31.53, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 106.04, + "success": true + } + ] + }, + { + "sessionId": "sess_c085d79b98f44507a1d26073ec9242fe", + "createMs": 787.43, + "connectMs": 101.29, + "taskMs": 11334.73, + "actionsCompleted": 40, + "actionsPerSecond": 3.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 571.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 245.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 252.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 673.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 376.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 77.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 204.99, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 497.92, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 429.27, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 694.54, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 709.77, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 320.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 294.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.91, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 50.92, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 186.79, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 514.82, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 275.97, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 239.14, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.86, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 785.75, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 142.56, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 395.63, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 32.75, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 141.34, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 196.05, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 451.23, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 289.68, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 253.92, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 15.71, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 863.79, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 251.83, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 309.56, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 7.74, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 93.32, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 185.95, + "success": true + } + ] + }, + { + "sessionId": "sess_1e025628b4bf45dc8cc9e6f14732a482", + "createMs": 547.08, + "connectMs": 99.79, + "taskMs": 8778.02, + "actionsCompleted": 40, + "actionsPerSecond": 4.56, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 224.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 182.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 171.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 244.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 694.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 138.41, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 266.31, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 138.24, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.63, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.84, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 244.45, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 506.68, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 822.1, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.04, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 92.4, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 162.65, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 211.55, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 125.76, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 328.62, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.44, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 255.98, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 419.11, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 622.07, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 19.76, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 46.05, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 205.61, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 182.7, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 144.36, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 269.59, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.84, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 503.61, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 630.96, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 208.83, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 11.74, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 60.36, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 110.02, + "success": true + } + ] + }, + { + "sessionId": "sess_3a63461ea53c41d4b68ceefd651e1dc7", + "createMs": 546.8, + "connectMs": 99.94, + "taskMs": 8280.12, + "actionsCompleted": 40, + "actionsPerSecond": 4.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 211.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 196.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 145.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 298.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 651.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.21, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 275.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 169.35, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 159.77, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.4, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 263.27, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 395.42, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 680.38, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 18.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 62.08, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 106.16, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 198.09, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 280.13, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 137.01, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 5.23, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 465.33, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 496.3, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 264.01, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 59.7, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 125.35, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 228.58, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 177.87, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 174.24, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.08, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 249.5, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 509.86, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 320.67, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 13.46, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 237.16, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 147.4, + "success": true + } + ] + }, + { + "sessionId": "sess_41a6439f46f141719266058fefcf7a24", + "createMs": 780.47, + "connectMs": 104.93, + "taskMs": 10001.91, + "actionsCompleted": 40, + "actionsPerSecond": 4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 224.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 540.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 331.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 393.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.18, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 270.88, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 219.76, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 283.83, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 738.07, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 321.82, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 275.23, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.31, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 58.63, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 100.14, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 284.07, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 236.99, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 500.29, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 8.95, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 587, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 347.6, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 280.41, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 14.77, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 76.21, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 225.69, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 260.63, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 480.59, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 193.55, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 11.04, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 550.28, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 276.44, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 467.56, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 18.24, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 256.75, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 75.53, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 956.48, + "p95": 956.48, + "p99": 956.48, + "samples": 1 + }, + "connectMs": { + "median": 105.35, + "p95": 105.35, + "p99": 105.35, + "samples": 1 + }, + "taskMs": { + "median": 11336.25, + "p95": 11336.25, + "p99": 11336.25, + "samples": 1 + }, + "loopMs": { + "median": 2263.91, + "p95": 2730.86, + "p99": 2730.86, + "samples": 20 + }, + "actionsPerSecond": { + "median": 17.64, + "p95": 17.64, + "p99": 17.64, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.56, + "p95": 5.24, + "p99": 5.24, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 263.47, + "p95": 608.71, + "p99": 608.71, + "samples": 20 + }, + "waitForSelector": { + "median": 205.3, + "p95": 506.68, + "p99": 603.11, + "samples": 60 + }, + "screenshot": { + "median": 276.24, + "p95": 622.07, + "p99": 680.38, + "samples": 40 + }, + "textContent": { + "median": 8.75, + "p95": 18.24, + "p99": 18.49, + "samples": 40 + }, + "click": { + "median": 484.47, + "p95": 785.75, + "p99": 785.75, + "samples": 20 + }, + "goBack": { + "median": 61.22, + "p95": 237.16, + "p99": 237.16, + "samples": 20 + } + } + }, + "compositeScore": 89.76, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c5/2026-08-18.json b/results/browser-concurrent/c5/2026-08-18.json new file mode 100644 index 00000000..b66131dd --- /dev/null +++ b/results/browser-concurrent/c5/2026-08-18.json @@ -0,0 +1,9545 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.737Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 5, + "rounds": 1, + "actionsPerSession": 40, + "loopsPerSession": 4, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 849.8, + "connectMs": 295.63, + "taskMs": 9719.87, + "releaseMs": 308.89, + "totalMs": 11188.99, + "aggregateActionsPerSecond": 20.58, + "sessions": [ + { + "sessionId": "da0f178c-f21f-48b1-b2b0-60885b5118b8", + "createMs": 480.24, + "connectMs": 208.48, + "taskMs": 7249.57, + "actionsCompleted": 40, + "actionsPerSecond": 5.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 268.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 627.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 310.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.64, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.52, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 128.45, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 230.54, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 273.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 114.59, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 290.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 27.87, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 265.72, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 340.35, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 57.08, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 256.32, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 308.7, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 129.88, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 214.9, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.34, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 36.44, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 273.43, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 217.57, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 161.11, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 265.24, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.07, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 284.83, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 276.81, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 134.97, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.86, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 36, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 224.16, + "success": true + } + ] + }, + { + "sessionId": "2e703ef3-cf5c-4c40-9a96-5ceade3bd874", + "createMs": 848.02, + "connectMs": 294.53, + "taskMs": 6543.24, + "actionsCompleted": 40, + "actionsPerSecond": 6.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 901.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 338.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 217.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 196.33, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.55, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 159.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 217.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 195.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 191.62, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.59, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.63, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 203.32, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 266.96, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 134.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 152.85, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 203.47, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 208.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 181.23, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 38.55, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 194.54, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 344.13, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 66.3, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 187.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.58, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 209.58, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 159.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 226.17, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.49, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.92, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 237.26, + "success": true + } + ] + }, + { + "sessionId": "00438da1-e14b-4c36-955a-edf7334ac60e", + "createMs": 482.9, + "connectMs": 221, + "taskMs": 8207.48, + "actionsCompleted": 40, + "actionsPerSecond": 4.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 909.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 104.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 251.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 205.83, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.08, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 307.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 72.28, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 182.15, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 216.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 272.92, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 316.95, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 33.21, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 294.12, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 391.14, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 75.19, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 207.34, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 410.24, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 342.54, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 207.94, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.08, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 43.45, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 360.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 351.53, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 67.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 153.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 230.31, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 291.99, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 219.49, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.15, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 32.89, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 264.44, + "success": true + } + ] + }, + { + "sessionId": "a635b7fb-7302-488e-bb74-49be2e40f942", + "createMs": 479.07, + "connectMs": 215.89, + "taskMs": 9717.3, + "actionsCompleted": 40, + "actionsPerSecond": 4.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 780.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 623.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 418.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 77.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 318.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 319.81, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 74.51, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 209.32, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 429.26, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 537.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 384.33, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.34, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 76.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 240.68, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 186.31, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 168.72, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 250.33, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.6, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 450.4, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 413.34, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 443.8, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 7.93, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 42.78, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 235.55, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 353.99, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 81.12, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 195.11, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.56, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 402.42, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 536.96, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 339.62, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 10.26, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.02, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 261.21, + "success": true + } + ] + }, + { + "sessionId": "974f2012-ee60-4240-b537-4b90d39b1c06", + "createMs": 524.97, + "connectMs": 208.08, + "taskMs": 7146.76, + "actionsCompleted": 40, + "actionsPerSecond": 5.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 751.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 306.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 256.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 389.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 246.84, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 198.58, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 121.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.81, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.38, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 257.88, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 203.52, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 326.14, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.58, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 290.49, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 185.22, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 117.18, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 214.78, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 241.86, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 214.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 309.68, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 30.04, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 203.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 267.71, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 111.82, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 185.1, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.81, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 278.1, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 237.18, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 301.24, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.98, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 50.96, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 227.71, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 849.8, + "p95": 849.8, + "p99": 849.8, + "samples": 1 + }, + "connectMs": { + "median": 295.63, + "p95": 295.63, + "p99": 295.63, + "samples": 1 + }, + "taskMs": { + "median": 9719.87, + "p95": 9719.87, + "p99": 9719.87, + "samples": 1 + }, + "loopMs": { + "median": 1688.59, + "p95": 2826.07, + "p99": 2826.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 20.58, + "p95": 20.58, + "p99": 20.58, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.52, + "p95": 6.11, + "p99": 6.11, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 330.08, + "p95": 901.6, + "p99": 901.6, + "samples": 20 + }, + "waitForSelector": { + "median": 203.54, + "p95": 342.54, + "p99": 413.34, + "samples": 60 + }, + "screenshot": { + "median": 224.76, + "p95": 389.66, + "p99": 418.25, + "samples": 40 + }, + "textContent": { + "median": 5.57, + "p95": 8.01, + "p99": 8.18, + "samples": 40 + }, + "click": { + "median": 295.48, + "p95": 612.33, + "p99": 612.33, + "samples": 20 + }, + "goBack": { + "median": 37.37, + "p95": 76.06, + "p99": 76.06, + "samples": 20 + } + } + }, + "compositeScore": 91.27, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 299.23, + "connectMs": 234.43, + "taskMs": 14386.65, + "releaseMs": 92.66, + "totalMs": 15045.77, + "aggregateActionsPerSecond": 13.9, + "sessions": [ + { + "sessionId": "a1ee7b28-4e24-41e1-81d1-8fc683445a9d", + "createMs": 221.85, + "connectMs": 126.55, + "taskMs": 8467.58, + "actionsCompleted": 40, + "actionsPerSecond": 4.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 732.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 166.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 301.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 432.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 218.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 235.01, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 178.06, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 585.35, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 252.36, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 239.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.22, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 121.43, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 246.19, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 157.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 280.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 599.95, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 222.09, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 230.45, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 15.69, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 53.78, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 126.92, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 227.43, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 151.73, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 258.38, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.17, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 609.77, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 267.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 221.9, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 16.68, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 41.43, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 141.37, + "success": true + } + ] + }, + { + "sessionId": "8f890c9a-0701-4d7f-90ae-c2d1ad6fd905", + "createMs": 242.04, + "connectMs": 147.55, + "taskMs": 8355.95, + "actionsCompleted": 40, + "actionsPerSecond": 4.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 615.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 56.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 585.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 394.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 192.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 122.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 345.26, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 143.33, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 229.09, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.3, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 491.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 299.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 225.8, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.29, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 126.27, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 350.45, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 141.46, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 241.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16.18, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 500.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 289.43, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 225.42, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 15.9, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 39.56, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 135.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 343.12, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 139.66, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 244.37, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.21, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 493.72, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 332.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 203.02, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 15.8, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 50.09, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 127.63, + "success": true + } + ] + }, + { + "sessionId": "4bac9d7a-337c-4fb9-927d-cdd1569b3a50", + "createMs": 229.27, + "connectMs": 155.79, + "taskMs": 8279.33, + "actionsCompleted": 40, + "actionsPerSecond": 4.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 632.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 198.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 535.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 233.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 115.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 329.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 134.97, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 186.14, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 457.92, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 412.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 229.56, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.71, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 116.41, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 262.21, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 197.78, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 15.15, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 453.59, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 375.84, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 229.6, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 45.46, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 116.03, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 264.47, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 224.02, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 203.58, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 14.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 459.23, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 420.63, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 221.28, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 14.53, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.27, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 115.09, + "success": true + } + ] + }, + { + "sessionId": "a6741372-79aa-4f3c-b833-735e42316b3b", + "createMs": 297.56, + "connectMs": 232.88, + "taskMs": 14384.72, + "actionsCompleted": 40, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 855.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 301.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 477.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1108.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 706.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 518.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.78, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 235.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 501.43, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 24.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 874.98, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 639.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 653.71, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 27.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 58.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 185.74, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 266.39, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 220.77, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 501.99, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 25.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 924.33, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 701.27, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 481.77, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 28.26, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 82.51, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 235.23, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 274.26, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 219.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 396.21, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 25.15, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 895.21, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 644.95, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 440.47, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 27.74, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 64.5, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 189.88, + "success": true + } + ] + }, + { + "sessionId": "f6ee9505-53e8-4adb-a7ff-652853f019f2", + "createMs": 227.66, + "connectMs": 234.02, + "taskMs": 11116.28, + "actionsCompleted": 40, + "actionsPerSecond": 3.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 449.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 802.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 361.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.46, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 225.65, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 173.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 408.03, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.52, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 821.67, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 341.99, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 428.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.74, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 124.13, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 215.49, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 162.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 405.09, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 15.63, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1054.36, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 348.71, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 394.13, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.16, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 44.06, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 132.62, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 218.65, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 166.32, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 392.05, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 17.29, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 925.35, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 311, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 340.67, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 17.13, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 44, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 131.75, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 299.23, + "p95": 299.23, + "p99": 299.23, + "samples": 1 + }, + "connectMs": { + "median": 234.43, + "p95": 234.43, + "p99": 234.43, + "samples": 1 + }, + "taskMs": { + "median": 14386.65, + "p95": 14386.65, + "p99": 14386.65, + "samples": 1 + }, + "loopMs": { + "median": 2478.92, + "p95": 3472.38, + "p99": 3472.38, + "samples": 20 + }, + "actionsPerSecond": { + "median": 13.9, + "p95": 13.9, + "p99": 13.9, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.72, + "p95": 4.83, + "p99": 4.83, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 273.02, + "p95": 732.03, + "p99": 732.03, + "samples": 20 + }, + "waitForSelector": { + "median": 189.25, + "p95": 448.06, + "p99": 639.51, + "samples": 60 + }, + "screenshot": { + "median": 259.5, + "p95": 501.43, + "p99": 501.99, + "samples": 40 + }, + "textContent": { + "median": 16.17, + "p95": 27.85, + "p99": 28.26, + "samples": 40 + }, + "click": { + "median": 592.66, + "p95": 1054.36, + "p99": 1054.36, + "samples": 20 + }, + "goBack": { + "median": 43.8, + "p95": 64.5, + "p99": 64.5, + "samples": 20 + } + } + }, + "compositeScore": 89.91, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 366.59, + "connectMs": 334.29, + "taskMs": 13630.54, + "releaseMs": 350.42, + "totalMs": 14702.58, + "aggregateActionsPerSecond": 14.67, + "sessions": [ + { + "sessionId": "3cf169ad-498d-4c66-aadc-1bfcb31bb0fe", + "createMs": 283.4, + "connectMs": 333.64, + "taskMs": 9837.7, + "actionsCompleted": 40, + "actionsPerSecond": 4.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 736.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 122.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 430.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 541.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 314.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 152.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.49, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 339.77, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 158.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 425.01, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 529.97, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 257.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 288.29, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.24, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 174.38, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 281.59, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 176.57, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 389.49, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.92, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 569.3, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 271.74, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 370.72, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.33, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 137.62, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 177.01, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 305.65, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 151.46, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 365.48, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 566.53, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 265.53, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 277.95, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 11.95, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 127.84, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 167.17, + "success": true + } + ] + }, + { + "sessionId": "d9c7fbb0-8f45-4fe2-bf3e-d0993996788a", + "createMs": 287.81, + "connectMs": 307.95, + "taskMs": 9165.56, + "actionsCompleted": 40, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 782.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 496.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 406.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 272.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 290.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 112.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 272.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 177.18, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 558.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 426.13, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 235.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.89, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.61, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 123.97, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 180.43, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 299.57, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 140.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 421.92, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.48, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 439.17, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 226.11, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 349.83, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 20.95, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 110.88, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 181.08, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 211.18, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 147.95, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 368.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.21, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 408.81, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 217.2, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 309.93, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 10.58, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 121.25, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 155.78, + "success": true + } + ] + }, + { + "sessionId": "73975b0f-1329-4fb6-87ba-7ff5db81392c", + "createMs": 342.33, + "connectMs": 283.89, + "taskMs": 8998.53, + "actionsCompleted": 40, + "actionsPerSecond": 4.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 112.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 359.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 478.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 103.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 296.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 155.63, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 282.06, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.19, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 376.86, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 317.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 360.56, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 112.67, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 159.3, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 268.9, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 115.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 308.91, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 10.93, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 434.44, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 272.63, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 353.95, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 86.25, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 159.09, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 314.42, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 156.82, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 320.6, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.37, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 409.17, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 290.93, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 369.35, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 14.39, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 111.87, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 158.42, + "success": true + } + ] + }, + { + "sessionId": "a20c8a5b-0641-4c53-841a-8b9b78d9942f", + "createMs": 345.17, + "connectMs": 306.06, + "taskMs": 13628.11, + "actionsCompleted": 40, + "actionsPerSecond": 2.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1014.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 378.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 518.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 996.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 584.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 167.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 289.54, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 208.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 370.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 519.55, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 769.7, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 629.6, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 149.42, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 267.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 294.18, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 190.32, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 360, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 573.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 808.51, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 625.34, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 19.7, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 129.28, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 176.06, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 370.2, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 164.79, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 371.09, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.01, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 516.73, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 812.45, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 624.12, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 127.49, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 187.24, + "success": true + } + ] + }, + { + "sessionId": "e5ef20fc-7c46-41c6-afc4-04c1a2c36e40", + "createMs": 361.76, + "connectMs": 299.99, + "taskMs": 10957.46, + "actionsCompleted": 40, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 754.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 623.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 491.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 444.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.14, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 275.77, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 173.18, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 416.56, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.23, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 627.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 301.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 538.64, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.83, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 110.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.82, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 218.87, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 172.94, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 365.13, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 13.91, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 593.07, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 371.19, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 428.29, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 13.39, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 114.77, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 195.7, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 326.54, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 155.4, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 406.76, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 11.25, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 654.22, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 303.67, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 451.95, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 13.12, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 116.58, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 188.7, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 366.59, + "p95": 366.59, + "p99": 366.59, + "samples": 1 + }, + "connectMs": { + "median": 334.29, + "p95": 334.29, + "p99": 334.29, + "samples": 1 + }, + "taskMs": { + "median": 13630.54, + "p95": 13630.54, + "p99": 13630.54, + "samples": 1 + }, + "loopMs": { + "median": 2557.73, + "p95": 3236.92, + "p99": 3236.92, + "samples": 20 + }, + "actionsPerSecond": { + "median": 14.67, + "p95": 14.67, + "p99": 14.67, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.07, + "p95": 4.45, + "p99": 4.45, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 302.61, + "p95": 787.03, + "p99": 787.03, + "samples": 20 + }, + "waitForSelector": { + "median": 181.22, + "p95": 371.19, + "p99": 769.7, + "samples": 60 + }, + "screenshot": { + "median": 370.72, + "p95": 584.9, + "p99": 624.12, + "samples": 40 + }, + "textContent": { + "median": 12.1, + "p95": 19.4, + "p99": 19.7, + "samples": 40 + }, + "click": { + "median": 518.95, + "p95": 627.65, + "p99": 627.65, + "samples": 20 + }, + "goBack": { + "median": 121.25, + "p95": 152.72, + "p99": 152.72, + "samples": 20 + } + } + }, + "compositeScore": 89.23, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 284.9, + "connectMs": 178.17, + "taskMs": 6114.02, + "releaseMs": 54.42, + "totalMs": 6640.79, + "aggregateActionsPerSecond": 32.71, + "sessions": [ + { + "sessionId": "mq5tx0lejy15wkrlgdzxhtlz", + "createMs": 220.77, + "connectMs": 132.13, + "taskMs": 4545.7, + "actionsCompleted": 40, + "actionsPerSecond": 8.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 308.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 421.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 171.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 276.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 36.49, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 173.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 83.48, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 216.92, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 191.71, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 86.57, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 203.49, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.16, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 34.64, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 136.04, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 107.92, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 141.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.34, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 238.69, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 65.35, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 170.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 29.04, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 31.04, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 134.46, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 44.15, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 199.49, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.03, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 216.39, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 92.86, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 199.77, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.2, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 28.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 40.34, + "success": true + } + ] + }, + { + "sessionId": "ozmkwxgucxdca4ipuchyfm1x", + "createMs": 283.03, + "connectMs": 112.72, + "taskMs": 3945.98, + "actionsCompleted": 40, + "actionsPerSecond": 10.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 520.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 44.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 173.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 258.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 91.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 158.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 21.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 33.19, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 123.1, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 54.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 211.01, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.69, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 176.25, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 100.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 199.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 43.02, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 106.88, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 78.32, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 176.72, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.56, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 166.85, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 103.51, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 163.61, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.07, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 24.09, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 35.06, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 115.55, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 54.29, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 255.6, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.14, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 157.22, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 61.62, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 126.73, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.01, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 21.44, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 30.94, + "success": true + } + ] + }, + { + "sessionId": "e0cwzjo9kehz88pukjkc01b6", + "createMs": 247.36, + "connectMs": 117.24, + "taskMs": 4403.51, + "actionsCompleted": 40, + "actionsPerSecond": 9.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 378.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 56.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 141.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 188.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 163.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 297.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 46.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 139.93, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 52, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.58, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 174.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 112.58, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 224.26, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 22.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 31.49, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 114.38, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 43.42, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 219.83, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.13, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 165.43, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 90.63, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 231.5, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 2.74, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 21.75, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 33.23, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 128.07, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 273.9, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 126.23, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 2.94, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 236.94, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 115.58, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 253.48, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.16, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 22.69, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 37.5, + "success": true + } + ] + }, + { + "sessionId": "yavkk9repbsjpxbio9rzzqom", + "createMs": 213.91, + "connectMs": 112.18, + "taskMs": 6112.77, + "actionsCompleted": 40, + "actionsPerSecond": 6.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 266.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 186.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 251.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 487.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 232.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.12, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 48.22, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 273.91, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 385.76, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 291.88, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.4, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.57, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 58.16, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 125.33, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 100.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 196.18, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 271.76, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 394.26, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 290.28, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.49, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 36.57, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 61.18, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 129.48, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 80.39, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 157.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.96, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 269.16, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 411.39, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 292.98, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 38.57, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 71.58, + "success": true + } + ] + }, + { + "sessionId": "vzogtv1fejukawoie2ulvrft", + "createMs": 248.02, + "connectMs": 177.72, + "taskMs": 5009.95, + "actionsCompleted": 40, + "actionsPerSecond": 7.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 305.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 146.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 244.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 379.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 180.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 43.74, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 132.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 40.84, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 261.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.61, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 213.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 216.07, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 193.91, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 23.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 50.54, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 101.15, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 61.5, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 235.75, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.4, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 201.77, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 135.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 292.09, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 23.92, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 37.04, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 112.55, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 91.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 165.55, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.25, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 214.75, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 170.72, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 266.75, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.29, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 24.39, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 47.48, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 284.9, + "p95": 284.9, + "p99": 284.9, + "samples": 1 + }, + "connectMs": { + "median": 178.17, + "p95": 178.17, + "p99": 178.17, + "samples": 1 + }, + "taskMs": { + "median": 6114.02, + "p95": 6114.02, + "p99": 6114.02, + "samples": 1 + }, + "loopMs": { + "median": 1120.52, + "p95": 1673.13, + "p99": 1673.13, + "samples": 20 + }, + "actionsPerSecond": { + "median": 32.71, + "p95": 32.71, + "p99": 32.71, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 8.8, + "p95": 10.14, + "p99": 10.14, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 133.28, + "p95": 378.63, + "p99": 378.63, + "samples": 20 + }, + "waitForSelector": { + "median": 68.46, + "p95": 216.07, + "p99": 385.76, + "samples": 60 + }, + "screenshot": { + "median": 210.86, + "p95": 292.09, + "p99": 292.98, + "samples": 40 + }, + "textContent": { + "median": 3.5, + "p95": 5.16, + "p99": 6.49, + "samples": 40 + }, + "click": { + "median": 215.57, + "p95": 379.88, + "p99": 379.88, + "samples": 20 + }, + "goBack": { + "median": 26.29, + "p95": 38.57, + "p99": 38.57, + "samples": 20 + } + } + }, + "compositeScore": 96.36, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 2243.32, + "connectMs": 3110.55, + "taskMs": 183974.82, + "releaseMs": 1096.94, + "totalMs": 190644.5, + "aggregateActionsPerSecond": 1.01, + "sessions": [ + { + "sessionId": "f85ce349-1652-414c-ae5d-61b7de1c66bd", + "createMs": 1335.85, + "connectMs": 3109.96, + "taskMs": 183973.56, + "actionsCompleted": 26, + "actionsPerSecond": 0.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2200.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4238.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 22059.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 415.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 21099.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5429.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 16059.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 409.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1494.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3428.59, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1286.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2922.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 14853.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 413.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 17924.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 8067.42, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 8130.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 431.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1276.64, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3998.99, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1200.79, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 5096.03, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 15347.8, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 375.22, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 16988.36, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 6627.65, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2196.36, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed\nCall log:\n - taking page screenshot\n" + }, + { + "index": 28, + "type": "textContent", + "durationMs": 0.32, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 29, + "type": "goBack", + "durationMs": 0.17, + "success": false, + "error": "page.goBack: Target page, context or browser has been closed" + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 0.13, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 31, + "type": "navigate", + "durationMs": 0.12, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 0.15, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 34, + "type": "textContent", + "durationMs": 0.11, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 35, + "type": "click", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 38, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 39, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 40, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "2c58faea-cb80-48f8-a2e3-b04c69f95b38", + "createMs": 1294.2, + "connectMs": 2670.42, + "taskMs": 173804.54, + "actionsCompleted": 40, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2044.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4630.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10498.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 979.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14952.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3050.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4799.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 469.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 956.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4095.73, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1048.28, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3840.08, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 5331.14, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 394, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 16777.62, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4007.47, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 5052.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 896.22, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2036.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 5733.28, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 823, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3480.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 5455.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 375.56, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 15428.75, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 3022.01, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 4620.84, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 421.12, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1812.42, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 3600.9, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 1460.53, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 3504.48, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 7179, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 389.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 14608.65, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3816.9, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 5514.43, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 985.07, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 919.13, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 4790.7, + "success": true + } + ] + }, + { + "sessionId": "3fbc2dff-f915-409d-a522-8b95eeb57e06", + "createMs": 1850, + "connectMs": 2733, + "taskMs": 168209.23, + "actionsCompleted": 40, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1608.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5440.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8168.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 376.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16704.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3913.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4355.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 449.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 958, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3593.72, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1520.69, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2863.58, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4586.02, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 975.37, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 18369, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 3379.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4729.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 979.48, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 854.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3965.15, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1344.3, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3366.67, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 3193.51, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 405.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 13545.74, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 4718.7, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3895.39, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 997.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1240.29, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 3578.82, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 821.95, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 4381.79, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 3705.23, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 430.41, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 21517.49, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 2640.4, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 4093.56, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 368.98, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1701.94, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 4469.66, + "success": true + } + ] + }, + { + "sessionId": "2650c45a-8092-43c2-9d0e-ebcdf1724e58", + "createMs": 2240.56, + "connectMs": 3050.99, + "taskMs": 174658.04, + "actionsCompleted": 40, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1727.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3247.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10144.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 382.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16253.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5202.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 10379.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 405.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1012.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4069.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1184.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2889.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 9707.51, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 420.13, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 13675.7, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2486.07, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 8726.27, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 391.78, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1020.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2898.2, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1084.3, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3342.37, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 10241.5, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 410.88, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 14751.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2592.65, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 5803.5, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 380.6, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 947.33, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2515.56, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 1916.16, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 3331.88, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 5108.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 275.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 11808.26, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3425.47, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 6347.8, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 298.24, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1033.99, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 2817.7, + "success": true + } + ] + }, + { + "sessionId": "22f9afa0-86bf-4902-a49a-0a5847eb6b45", + "createMs": 1095.12, + "connectMs": 2332.21, + "taskMs": 156939.57, + "actionsCompleted": 40, + "actionsPerSecond": 0.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1716.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4086.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3536.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 409.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 21267.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5246.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3139.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 395.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 887.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3875.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 716.64, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3243.9, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3255.03, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 392, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 21193.2, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2766.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 3703.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 391.3, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 863.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2340.59, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 585.08, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 2379.07, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 2947.82, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 384.95, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 18788.57, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2736.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3270.9, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 422.01, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 954.8, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2950.77, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 900.13, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 2810.85, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 4799.13, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 394.49, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 21867.98, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 2538.67, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 2426.15, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 211.57, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 551.48, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1590.66, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2243.32, + "p95": 2243.32, + "p99": 2243.32, + "samples": 1 + }, + "connectMs": { + "median": 3110.55, + "p95": 3110.55, + "p99": 3110.55, + "samples": 1 + }, + "taskMs": { + "median": 183974.82, + "p95": 183974.82, + "p99": 183974.82, + "samples": 1 + }, + "loopMs": { + "median": 43284.13, + "p95": 59305.44, + "p99": 59305.44, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.01, + "p95": 1.01, + "p99": 1.01, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.23, + "p95": 0.25, + "p99": 0.25, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1286.45, + "p95": 2200.28, + "p99": 2200.28, + "samples": 19 + }, + "waitForSelector": { + "median": 3492.29, + "p95": 5429.29, + "p99": 5733.28, + "samples": 56 + }, + "screenshot": { + "median": 5108.27, + "p95": 15347.8, + "p99": 16059.4, + "samples": 37 + }, + "textContent": { + "median": 405.73, + "p95": 979.54, + "p99": 985.07, + "samples": 37 + }, + "click": { + "median": 16777.62, + "p95": 21867.98, + "p99": 21867.98, + "samples": 19 + }, + "goBack": { + "median": 985.2, + "p95": 2036.75, + "p99": 2036.75, + "samples": 18 + } + } + }, + "compositeScore": 32.35, + "successRate": 0.8, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 2121.15, + "connectMs": 4136.11, + "taskMs": 26418.13, + "releaseMs": 1161.48, + "totalMs": 33897.28, + "aggregateActionsPerSecond": 7.57, + "sessions": [ + { + "sessionId": "2195e65d-c08d-43a6-97a7-86a7da340ea0", + "createMs": 1173.97, + "connectMs": 482.32, + "taskMs": 21665.88, + "actionsCompleted": 40, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 338.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 484.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 683.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1593.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 571.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 48.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 405.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 224.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 393.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 662.55, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 253.56, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1640.59, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 441.13, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 962.23, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 50, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 433.28, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 242.46, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 403.62, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 634.02, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 49.48, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4277.24, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 461.38, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 593.18, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 49.58, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 121, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 409.12, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 221.5, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 410.21, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 665.97, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 50.24, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1558.72, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 425.89, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 604.45, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 49.2, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 119.26, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 389.01, + "success": true + } + ] + }, + { + "sessionId": "caab8ec8-1186-4af9-85b7-bef2c2112dc4", + "createMs": 2085.52, + "connectMs": 1529.86, + "taskMs": 22096.73, + "actionsCompleted": 40, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1577.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 665.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 630.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 57.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1740.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 471.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 551.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 440.21, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 210.72, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 453.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 604.19, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 57.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1511, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 449.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 552.96, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 56.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 132.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 436.19, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 193.29, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 445.89, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 611.88, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 58.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1539.35, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2634.19, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 655.99, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 56.68, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 126.58, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 459.45, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 221.38, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 447.83, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 690.77, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 56.7, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1481.89, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 441.21, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 548.59, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 60.38, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 128.97, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 447.27, + "success": true + } + ] + }, + { + "sessionId": "d686b6d2-5692-4bd4-8098-d217f749e250", + "createMs": 2119.49, + "connectMs": 4135.37, + "taskMs": 22623.41, + "actionsCompleted": 40, + "actionsPerSecond": 1.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 851.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 549.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 611.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1494.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 471.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 632.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 434.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.76, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 446.38, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 594.84, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 54.26, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1645.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 970.09, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 665.47, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 53.77, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 128.83, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 458.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 234.34, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 428.16, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 577.49, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 53.82, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4177.77, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 455.02, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 652.25, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 56.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 130.3, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 458.9, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 245.88, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 442.08, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 583.19, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 56.44, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1773.18, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 454.92, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 640.51, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 54.11, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 124.64, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 446.65, + "success": true + } + ] + }, + { + "sessionId": "ffca5d27-bc49-4ef6-9251-267b66c776d0", + "createMs": 1151.03, + "connectMs": 374.84, + "taskMs": 22876.44, + "actionsCompleted": 40, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 466.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 486.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 575.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1616.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 839.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 585.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 388.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 219.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 401.04, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 549.41, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 50.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1727.21, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1213.61, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 593.55, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 55.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 396.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 251.43, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 395.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 569.64, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 48.84, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4244.03, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 780.85, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 583.79, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 54.69, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 123.27, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 399.12, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 228.72, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 400.44, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 573.44, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 51.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1648.7, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 764.6, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 669.4, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 54.32, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 121.72, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 395.23, + "success": true + } + ] + }, + { + "sessionId": "c05c7489-ff0f-4c40-95a1-4025ebf1c805", + "createMs": 1154.54, + "connectMs": 451.34, + "taskMs": 26415.94, + "actionsCompleted": 40, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 667.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 478.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 674.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2599.94, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 454.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 631.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 435.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 219.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 407.62, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 753.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.08, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2968.02, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 499.44, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 659.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 53.01, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 123.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3088.26, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 355.4, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 416.85, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 634, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 51.31, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2451.53, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 451.68, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 651.43, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 55.23, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 123.01, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 418.49, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 225.68, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 425.22, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 652.97, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 51.93, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2653.4, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 530.4, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 663.44, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 51.82, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 138.86, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 417.74, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2121.15, + "p95": 2121.15, + "p99": 2121.15, + "samples": 1 + }, + "connectMs": { + "median": 4136.11, + "p95": 4136.11, + "p99": 4136.11, + "samples": 1 + }, + "taskMs": { + "median": 26418.13, + "p95": 26418.13, + "p99": 26418.13, + "samples": 1 + }, + "loopMs": { + "median": 5308.41, + "p95": 7450.93, + "p99": 7450.93, + "samples": 20 + }, + "actionsPerSecond": { + "median": 7.57, + "p95": 7.57, + "p99": 7.57, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.77, + "p95": 1.85, + "p99": 1.85, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 238.4, + "p95": 851.52, + "p99": 851.52, + "samples": 20 + }, + "waitForSelector": { + "median": 446.52, + "p95": 780.85, + "p99": 970.09, + "samples": 60 + }, + "screenshot": { + "median": 631.04, + "p95": 683.62, + "p99": 690.77, + "samples": 40 + }, + "textContent": { + "median": 53.89, + "p95": 58.08, + "p99": 58.11, + "samples": 40 + }, + "click": { + "median": 1687.96, + "p95": 4244.03, + "p99": 4244.03, + "samples": 20 + }, + "goBack": { + "median": 124.72, + "p95": 132.79, + "p99": 132.79, + "samples": 20 + } + } + }, + "compositeScore": 79.94, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 716.31, + "connectMs": 99.98, + "taskMs": 13422, + "releaseMs": 58.39, + "totalMs": 14306.93, + "aggregateActionsPerSecond": 14.9, + "sessions": [ + { + "sessionId": "sess_52f005f0e89442ec8fd6d0b395690452", + "createMs": 714.48, + "connectMs": 96.18, + "taskMs": 6992.44, + "actionsCompleted": 40, + "actionsPerSecond": 5.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 531.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 144.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 316.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 283.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 299.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 212.88, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 172.3, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 9.54, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 333.39, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 296.63, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 169.65, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.45, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.61, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 96.72, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 234.26, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 333.68, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 159.02, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 328.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 295.31, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 163.09, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 10.32, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 54.26, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 89.09, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 200.27, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 242.2, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 362.07, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 371.95, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 238.04, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 196.22, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 56.8, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 164.18, + "success": true + } + ] + }, + { + "sessionId": "sess_fec24b766bd44391969596c882b71ace", + "createMs": 704.75, + "connectMs": 95.72, + "taskMs": 9623.77, + "actionsCompleted": 40, + "actionsPerSecond": 4.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 652.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 487.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.7, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 473.76, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 287.25, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 233.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 323.47, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 295.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 411.28, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.94, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 105.4, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 221.59, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 347.57, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 190.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 490.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.05, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 483.33, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 236.67, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 378.43, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8.96, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 77.54, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 144.55, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 279.11, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 364.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 298.12, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 35.07, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 426.61, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 268.01, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 343.85, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 73.66, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 282.62, + "success": true + } + ] + }, + { + "sessionId": "sess_7673df71d431477192d9bf7cc7bb8035", + "createMs": 476.95, + "connectMs": 99.59, + "taskMs": 9431.15, + "actionsCompleted": 40, + "actionsPerSecond": 4.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 746.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 202.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 529.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 215.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 138.83, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 452.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 236.05, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 224.96, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.18, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 397.6, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 311.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 359.54, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.58, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 56.94, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 163.66, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 435.59, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 215.47, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 214.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 7.67, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 397.47, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 491.7, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 241.08, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 91.7, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 130.24, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 322.71, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 259.16, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 220.54, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 10.66, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 791.08, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 460.32, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 261.79, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 9, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 76.81, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 215.3, + "success": true + } + ] + }, + { + "sessionId": "sess_caf843bfacf446d5af955e7ed5e8beaa", + "createMs": 439.84, + "connectMs": 92.68, + "taskMs": 13419.81, + "actionsCompleted": 40, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 564.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 477.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1157.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 614.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 379.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 322.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 272.77, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.51, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 534.48, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 781.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 562.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 28.9, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 64.42, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 167.01, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 339.36, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 266.55, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 254.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 732.96, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 575.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 759.82, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 14.38, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 84.62, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 320.49, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 393.62, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 143.45, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 424.9, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 10.35, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 479.84, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 768.57, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 702.31, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 15.11, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 88.72, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 155.09, + "success": true + } + ] + }, + { + "sessionId": "sess_eb549bdaa0254f62bed638d3cd1fc21c", + "createMs": 456.84, + "connectMs": 95.74, + "taskMs": 10869.82, + "actionsCompleted": 40, + "actionsPerSecond": 3.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 762.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 525.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 708.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 213.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 349.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 96.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 537.83, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.81, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 513.33, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 364.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 468.19, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 87.03, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.41, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 345.69, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 388.53, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 348.51, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 14.11, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 524.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 630.28, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 347.97, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8.32, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 88.14, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 119.65, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 319.21, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 215.83, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 253.76, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.66, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 528.45, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 491.36, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 139.78, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 104.3, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 716.31, + "p95": 716.31, + "p99": 716.31, + "samples": 1 + }, + "connectMs": { + "median": 99.98, + "p95": 99.98, + "p99": 99.98, + "samples": 1 + }, + "taskMs": { + "median": 13422, + "p95": 13422, + "p99": 13422, + "samples": 1 + }, + "loopMs": { + "median": 2390.91, + "p95": 3354.02, + "p99": 3354.02, + "samples": 20 + }, + "actionsPerSecond": { + "median": 14.9, + "p95": 14.9, + "p99": 14.9, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.16, + "p95": 5.72, + "p99": 5.72, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 348.31, + "p95": 746.02, + "p99": 746.02, + "samples": 20 + }, + "waitForSelector": { + "median": 250.68, + "p95": 575.03, + "p99": 708.75, + "samples": 60 + }, + "screenshot": { + "median": 267.28, + "p95": 562.61, + "p99": 614.78, + "samples": 40 + }, + "textContent": { + "median": 9.76, + "p95": 15.11, + "p99": 24.5, + "samples": 40 + }, + "click": { + "median": 478.76, + "p95": 732.96, + "p99": 732.96, + "samples": 20 + }, + "goBack": { + "median": 77.17, + "p95": 114.36, + "p99": 114.36, + "samples": 20 + } + } + }, + "compositeScore": 89.08, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c5/latest.json b/results/browser-concurrent/c5/latest.json new file mode 100644 index 00000000..b66131dd --- /dev/null +++ b/results/browser-concurrent/c5/latest.json @@ -0,0 +1,9545 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.737Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 5, + "rounds": 1, + "actionsPerSession": 40, + "loopsPerSession": 4, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 849.8, + "connectMs": 295.63, + "taskMs": 9719.87, + "releaseMs": 308.89, + "totalMs": 11188.99, + "aggregateActionsPerSecond": 20.58, + "sessions": [ + { + "sessionId": "da0f178c-f21f-48b1-b2b0-60885b5118b8", + "createMs": 480.24, + "connectMs": 208.48, + "taskMs": 7249.57, + "actionsCompleted": 40, + "actionsPerSecond": 5.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 78.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 268.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 627.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 310.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.64, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.52, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 128.45, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 230.54, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 273.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 114.59, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 290.73, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 27.87, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 265.72, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 340.35, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 57.08, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 256.32, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 308.7, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 129.88, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 214.9, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.34, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 36.44, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 273.43, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 217.57, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 161.11, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 265.24, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.07, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 284.83, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 276.81, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 134.97, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.86, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 36, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 224.16, + "success": true + } + ] + }, + { + "sessionId": "2e703ef3-cf5c-4c40-9a96-5ceade3bd874", + "createMs": 848.02, + "connectMs": 294.53, + "taskMs": 6543.24, + "actionsCompleted": 40, + "actionsPerSecond": 6.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 901.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 338.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 217.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.55, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 196.33, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 161.55, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 159.24, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.44, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 217.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 195.31, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 191.62, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.59, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.63, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 203.32, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 266.96, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 134.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 152.85, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 203.47, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 208.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 181.23, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.19, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 38.55, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 194.54, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 344.13, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 66.3, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 187.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.58, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 209.58, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 159.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 226.17, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.49, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.92, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 237.26, + "success": true + } + ] + }, + { + "sessionId": "00438da1-e14b-4c36-955a-edf7334ac60e", + "createMs": 482.9, + "connectMs": 221, + "taskMs": 8207.48, + "actionsCompleted": 40, + "actionsPerSecond": 4.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 909.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 104.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 251.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 205.83, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.08, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 307.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 72.28, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 182.15, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.82, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 216.04, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 272.92, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 316.95, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 33.21, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 294.12, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 391.14, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 75.19, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 207.34, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 410.24, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 342.54, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 207.94, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.08, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 43.45, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 360.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 351.53, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 67.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 153.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 7.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 230.31, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 291.99, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 219.49, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.15, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 32.89, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 264.44, + "success": true + } + ] + }, + { + "sessionId": "a635b7fb-7302-488e-bb74-49be2e40f942", + "createMs": 479.07, + "connectMs": 215.89, + "taskMs": 9717.3, + "actionsCompleted": 40, + "actionsPerSecond": 4.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 780.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 460.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 623.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 418.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 77.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 318.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 319.81, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 74.51, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 209.32, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 429.26, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 537.72, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 384.33, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.34, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 76.06, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 240.68, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 186.31, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 168.72, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 250.33, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.6, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 450.4, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 413.34, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 443.8, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 7.93, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 42.78, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 235.55, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 353.99, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 81.12, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 195.11, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 5.56, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 402.42, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 536.96, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 339.62, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 10.26, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.02, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 261.21, + "success": true + } + ] + }, + { + "sessionId": "974f2012-ee60-4240-b537-4b90d39b1c06", + "createMs": 524.97, + "connectMs": 208.08, + "taskMs": 7146.76, + "actionsCompleted": 40, + "actionsPerSecond": 5.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 751.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 306.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 256.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 389.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 246.84, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 198.58, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 121.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.81, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.38, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 257.88, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 203.52, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 326.14, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 29.58, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 290.49, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 185.22, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 117.18, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 214.78, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 241.86, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 214.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 309.68, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.78, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 30.04, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 203.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 267.71, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 111.82, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 185.1, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 4.81, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 278.1, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 237.18, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 301.24, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.98, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 50.96, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 227.71, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 849.8, + "p95": 849.8, + "p99": 849.8, + "samples": 1 + }, + "connectMs": { + "median": 295.63, + "p95": 295.63, + "p99": 295.63, + "samples": 1 + }, + "taskMs": { + "median": 9719.87, + "p95": 9719.87, + "p99": 9719.87, + "samples": 1 + }, + "loopMs": { + "median": 1688.59, + "p95": 2826.07, + "p99": 2826.07, + "samples": 20 + }, + "actionsPerSecond": { + "median": 20.58, + "p95": 20.58, + "p99": 20.58, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.52, + "p95": 6.11, + "p99": 6.11, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 330.08, + "p95": 901.6, + "p99": 901.6, + "samples": 20 + }, + "waitForSelector": { + "median": 203.54, + "p95": 342.54, + "p99": 413.34, + "samples": 60 + }, + "screenshot": { + "median": 224.76, + "p95": 389.66, + "p99": 418.25, + "samples": 40 + }, + "textContent": { + "median": 5.57, + "p95": 8.01, + "p99": 8.18, + "samples": 40 + }, + "click": { + "median": 295.48, + "p95": 612.33, + "p99": 612.33, + "samples": 20 + }, + "goBack": { + "median": 37.37, + "p95": 76.06, + "p99": 76.06, + "samples": 20 + } + } + }, + "compositeScore": 91.27, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 299.23, + "connectMs": 234.43, + "taskMs": 14386.65, + "releaseMs": 92.66, + "totalMs": 15045.77, + "aggregateActionsPerSecond": 13.9, + "sessions": [ + { + "sessionId": "a1ee7b28-4e24-41e1-81d1-8fc683445a9d", + "createMs": 221.85, + "connectMs": 126.55, + "taskMs": 8467.58, + "actionsCompleted": 40, + "actionsPerSecond": 4.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 732.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 166.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 301.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 432.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 218.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 235.01, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 178.06, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 260.62, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 585.35, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 252.36, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 239.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.22, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 121.43, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 246.19, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 157.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 280.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 599.95, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 222.09, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 230.45, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 15.69, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 53.78, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 126.92, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 227.43, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 151.73, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 258.38, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.17, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 609.77, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 267.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 221.9, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 16.68, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 41.43, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 141.37, + "success": true + } + ] + }, + { + "sessionId": "8f890c9a-0701-4d7f-90ae-c2d1ad6fd905", + "createMs": 242.04, + "connectMs": 147.55, + "taskMs": 8355.95, + "actionsCompleted": 40, + "actionsPerSecond": 4.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 615.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 56.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 585.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 394.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 192.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 122.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 345.26, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 143.33, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 229.09, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.3, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 491.8, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 299.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 225.8, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 16.29, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 38.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 126.27, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 350.45, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 141.46, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 241.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 16.18, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 500.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 289.43, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 225.42, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 15.9, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 39.56, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 135.27, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 343.12, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 139.66, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 244.37, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 16.21, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 493.72, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 332.61, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 203.02, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 15.8, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 50.09, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 127.63, + "success": true + } + ] + }, + { + "sessionId": "4bac9d7a-337c-4fb9-927d-cdd1569b3a50", + "createMs": 229.27, + "connectMs": 155.79, + "taskMs": 8279.33, + "actionsCompleted": 40, + "actionsPerSecond": 4.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 632.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 198.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 535.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 233.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 115.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 329.98, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 134.97, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 186.14, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 457.92, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 412.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 229.56, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 14.71, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 37.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 116.41, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 262.21, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 197.78, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 15.15, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 453.59, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 375.84, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 229.6, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 45.46, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 116.03, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 264.47, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 224.02, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 203.58, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 14.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 459.23, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 420.63, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 221.28, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 14.53, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 39.27, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 115.09, + "success": true + } + ] + }, + { + "sessionId": "a6741372-79aa-4f3c-b833-735e42316b3b", + "createMs": 297.56, + "connectMs": 232.88, + "taskMs": 14384.72, + "actionsCompleted": 40, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 855.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 301.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 477.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1108.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 706.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 518.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.78, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 235.07, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 501.43, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 24.29, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 874.98, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 639.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 653.71, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 27.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 58.02, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 185.74, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 266.39, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 220.77, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 501.99, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 25.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 924.33, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 701.27, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 481.77, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 28.26, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 82.51, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 235.23, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 274.26, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 219.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 396.21, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 25.15, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 895.21, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 644.95, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 440.47, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 27.74, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 64.5, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 189.88, + "success": true + } + ] + }, + { + "sessionId": "f6ee9505-53e8-4adb-a7ff-652853f019f2", + "createMs": 227.66, + "connectMs": 234.02, + "taskMs": 11116.28, + "actionsCompleted": 40, + "actionsPerSecond": 3.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 449.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 802.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 361.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.46, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 225.65, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 173.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 408.03, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 16.52, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 821.67, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 341.99, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 428.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 40.74, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 124.13, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 215.49, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 162.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 405.09, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 15.63, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1054.36, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 348.71, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 394.13, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.16, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 44.06, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 132.62, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 218.65, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 166.32, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 392.05, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 17.29, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 925.35, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 311, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 340.67, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 17.13, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 44, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 131.75, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 299.23, + "p95": 299.23, + "p99": 299.23, + "samples": 1 + }, + "connectMs": { + "median": 234.43, + "p95": 234.43, + "p99": 234.43, + "samples": 1 + }, + "taskMs": { + "median": 14386.65, + "p95": 14386.65, + "p99": 14386.65, + "samples": 1 + }, + "loopMs": { + "median": 2478.92, + "p95": 3472.38, + "p99": 3472.38, + "samples": 20 + }, + "actionsPerSecond": { + "median": 13.9, + "p95": 13.9, + "p99": 13.9, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.72, + "p95": 4.83, + "p99": 4.83, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 273.02, + "p95": 732.03, + "p99": 732.03, + "samples": 20 + }, + "waitForSelector": { + "median": 189.25, + "p95": 448.06, + "p99": 639.51, + "samples": 60 + }, + "screenshot": { + "median": 259.5, + "p95": 501.43, + "p99": 501.99, + "samples": 40 + }, + "textContent": { + "median": 16.17, + "p95": 27.85, + "p99": 28.26, + "samples": 40 + }, + "click": { + "median": 592.66, + "p95": 1054.36, + "p99": 1054.36, + "samples": 20 + }, + "goBack": { + "median": 43.8, + "p95": 64.5, + "p99": 64.5, + "samples": 20 + } + } + }, + "compositeScore": 89.91, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 366.59, + "connectMs": 334.29, + "taskMs": 13630.54, + "releaseMs": 350.42, + "totalMs": 14702.58, + "aggregateActionsPerSecond": 14.67, + "sessions": [ + { + "sessionId": "3cf169ad-498d-4c66-aadc-1bfcb31bb0fe", + "createMs": 283.4, + "connectMs": 333.64, + "taskMs": 9837.7, + "actionsCompleted": 40, + "actionsPerSecond": 4.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 736.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 122.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 430.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 541.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 314.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 152.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 201.49, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 339.77, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 158.53, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 425.01, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 529.97, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 257.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 288.29, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.24, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 174.38, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 281.59, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 176.57, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 389.49, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.92, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 569.3, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 271.74, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 370.72, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 18.33, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 137.62, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 177.01, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 305.65, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 151.46, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 365.48, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 11.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 566.53, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 265.53, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 277.95, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 11.95, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 127.84, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 167.17, + "success": true + } + ] + }, + { + "sessionId": "d9c7fbb0-8f45-4fe2-bf3e-d0993996788a", + "createMs": 287.81, + "connectMs": 307.95, + "taskMs": 9165.56, + "actionsCompleted": 40, + "actionsPerSecond": 4.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 782.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 496.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 406.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 272.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 290.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.17, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 112.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.6, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 272.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 177.18, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 558.05, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.73, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 426.13, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 235.93, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 303.89, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 10.61, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 123.97, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 180.43, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 299.57, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 140.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 421.92, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.48, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 439.17, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 226.11, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 349.83, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 20.95, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 110.88, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 181.08, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 211.18, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 147.95, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 368.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.21, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 408.81, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 217.2, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 309.93, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 10.58, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 121.25, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 155.78, + "success": true + } + ] + }, + { + "sessionId": "73975b0f-1329-4fb6-87ba-7ff5db81392c", + "createMs": 342.33, + "connectMs": 283.89, + "taskMs": 8998.53, + "actionsCompleted": 40, + "actionsPerSecond": 4.45, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 787.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 112.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 359.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 478.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 103.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 296.56, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 155.63, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 282.06, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.19, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 376.86, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 317.87, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 360.56, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 11.36, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 112.67, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 159.3, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 268.9, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 115.11, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 308.91, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 10.93, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 434.44, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 272.63, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 353.95, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 12.61, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 86.25, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 159.09, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 314.42, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 156.82, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 320.6, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.37, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 409.17, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 290.93, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 369.35, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 14.39, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 111.87, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 158.42, + "success": true + } + ] + }, + { + "sessionId": "a20c8a5b-0641-4c53-841a-8b9b78d9942f", + "createMs": 345.17, + "connectMs": 306.06, + "taskMs": 13628.11, + "actionsCompleted": 40, + "actionsPerSecond": 2.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1014.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 378.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 518.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 996.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 584.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 167.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 289.54, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 208.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 370.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 13.07, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 519.55, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 769.7, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 629.6, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 19.85, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 149.42, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 267.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 294.18, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 190.32, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 360, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.1, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 573.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 808.51, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 625.34, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 19.7, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 129.28, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 176.06, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 370.2, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 164.79, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 371.09, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 12.01, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 516.73, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 812.45, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 624.12, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 127.49, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 187.24, + "success": true + } + ] + }, + { + "sessionId": "e5ef20fc-7c46-41c6-afc4-04c1a2c36e40", + "createMs": 361.76, + "connectMs": 299.99, + "taskMs": 10957.46, + "actionsCompleted": 40, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 754.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 623.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 491.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 444.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 176.14, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 275.77, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 173.18, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 416.56, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.23, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 627.65, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 301.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 538.64, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.83, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 110.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 184.82, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 218.87, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 172.94, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 365.13, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 13.91, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 593.07, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 371.19, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 428.29, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 13.39, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 114.77, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 195.7, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 326.54, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 155.4, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 406.76, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 11.25, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 654.22, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 303.67, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 451.95, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 13.12, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 116.58, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 188.7, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 366.59, + "p95": 366.59, + "p99": 366.59, + "samples": 1 + }, + "connectMs": { + "median": 334.29, + "p95": 334.29, + "p99": 334.29, + "samples": 1 + }, + "taskMs": { + "median": 13630.54, + "p95": 13630.54, + "p99": 13630.54, + "samples": 1 + }, + "loopMs": { + "median": 2557.73, + "p95": 3236.92, + "p99": 3236.92, + "samples": 20 + }, + "actionsPerSecond": { + "median": 14.67, + "p95": 14.67, + "p99": 14.67, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.07, + "p95": 4.45, + "p99": 4.45, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 302.61, + "p95": 787.03, + "p99": 787.03, + "samples": 20 + }, + "waitForSelector": { + "median": 181.22, + "p95": 371.19, + "p99": 769.7, + "samples": 60 + }, + "screenshot": { + "median": 370.72, + "p95": 584.9, + "p99": 624.12, + "samples": 40 + }, + "textContent": { + "median": 12.1, + "p95": 19.4, + "p99": 19.7, + "samples": 40 + }, + "click": { + "median": 518.95, + "p95": 627.65, + "p99": 627.65, + "samples": 20 + }, + "goBack": { + "median": 121.25, + "p95": 152.72, + "p99": 152.72, + "samples": 20 + } + } + }, + "compositeScore": 89.23, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 284.9, + "connectMs": 178.17, + "taskMs": 6114.02, + "releaseMs": 54.42, + "totalMs": 6640.79, + "aggregateActionsPerSecond": 32.71, + "sessions": [ + { + "sessionId": "mq5tx0lejy15wkrlgdzxhtlz", + "createMs": 220.77, + "connectMs": 132.13, + "taskMs": 4545.7, + "actionsCompleted": 40, + "actionsPerSecond": 8.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 308.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 151.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 421.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 171.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 276.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 36.49, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 173.27, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 83.48, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 216.92, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.09, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 191.71, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 86.57, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 203.49, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 3.19, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.16, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 34.64, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 136.04, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 107.92, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 141.77, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.34, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 238.69, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 65.35, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 170.33, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 29.04, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 31.04, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 134.46, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 44.15, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 199.49, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.03, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 216.39, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 92.86, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 199.77, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.2, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 28.45, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 40.34, + "success": true + } + ] + }, + { + "sessionId": "ozmkwxgucxdca4ipuchyfm1x", + "createMs": 283.03, + "connectMs": 112.72, + "taskMs": 3945.98, + "actionsCompleted": 40, + "actionsPerSecond": 10.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 520.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 44.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 173.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 258.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 91.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 158.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 21.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 33.19, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 123.1, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 54.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 211.01, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.69, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 176.25, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 100.01, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 199.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 2.99, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 30.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 43.02, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 106.88, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 78.32, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 176.72, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.56, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 166.85, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 103.51, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 163.61, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.07, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 24.09, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 35.06, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 115.55, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 54.29, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 255.6, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.14, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 157.22, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 61.62, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 126.73, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.01, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 21.44, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 30.94, + "success": true + } + ] + }, + { + "sessionId": "e0cwzjo9kehz88pukjkc01b6", + "createMs": 247.36, + "connectMs": 117.24, + "taskMs": 4403.51, + "actionsCompleted": 40, + "actionsPerSecond": 9.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 378.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 56.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 141.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 188.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 163.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 297.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 22.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 46.45, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 139.93, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 52, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.58, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 2.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 174.61, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 112.58, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 224.26, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 22.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 31.49, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 114.38, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 43.42, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 219.83, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.13, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 165.43, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 90.63, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 231.5, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 2.74, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 21.75, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 33.23, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 128.07, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 273.9, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 126.23, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 2.94, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 236.94, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 115.58, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 253.48, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 3.16, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 22.69, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 37.5, + "success": true + } + ] + }, + { + "sessionId": "yavkk9repbsjpxbio9rzzqom", + "createMs": 213.91, + "connectMs": 112.18, + "taskMs": 6112.77, + "actionsCompleted": 40, + "actionsPerSecond": 6.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 266.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 186.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 251.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 487.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 232.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.56, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 159.12, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 48.22, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 210.72, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 3.65, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 273.91, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 385.76, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 291.88, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 8.4, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 34.57, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 58.16, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 125.33, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 100.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 196.18, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.43, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 271.76, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 394.26, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 290.28, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 6.49, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 36.57, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 61.18, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 129.48, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 80.39, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 157.74, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.96, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 269.16, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 411.39, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 292.98, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 38.57, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 71.58, + "success": true + } + ] + }, + { + "sessionId": "vzogtv1fejukawoie2ulvrft", + "createMs": 248.02, + "connectMs": 177.72, + "taskMs": 5009.95, + "actionsCompleted": 40, + "actionsPerSecond": 7.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 305.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 146.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 244.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 379.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 180.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 43.74, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 132.09, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 40.84, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 261.22, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.61, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 213.4, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 216.07, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 193.91, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 4.08, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 23.26, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 50.54, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 101.15, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 61.5, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 235.75, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 3.4, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 201.77, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 135.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 292.09, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 4.13, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 23.92, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 37.04, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 112.55, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 91.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 165.55, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 3.25, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 214.75, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 170.72, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 266.75, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 4.29, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 24.39, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 47.48, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 284.9, + "p95": 284.9, + "p99": 284.9, + "samples": 1 + }, + "connectMs": { + "median": 178.17, + "p95": 178.17, + "p99": 178.17, + "samples": 1 + }, + "taskMs": { + "median": 6114.02, + "p95": 6114.02, + "p99": 6114.02, + "samples": 1 + }, + "loopMs": { + "median": 1120.52, + "p95": 1673.13, + "p99": 1673.13, + "samples": 20 + }, + "actionsPerSecond": { + "median": 32.71, + "p95": 32.71, + "p99": 32.71, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 8.8, + "p95": 10.14, + "p99": 10.14, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 133.28, + "p95": 378.63, + "p99": 378.63, + "samples": 20 + }, + "waitForSelector": { + "median": 68.46, + "p95": 216.07, + "p99": 385.76, + "samples": 60 + }, + "screenshot": { + "median": 210.86, + "p95": 292.09, + "p99": 292.98, + "samples": 40 + }, + "textContent": { + "median": 3.5, + "p95": 5.16, + "p99": 6.49, + "samples": 40 + }, + "click": { + "median": 215.57, + "p95": 379.88, + "p99": 379.88, + "samples": 20 + }, + "goBack": { + "median": 26.29, + "p95": 38.57, + "p99": 38.57, + "samples": 20 + } + } + }, + "compositeScore": 96.36, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 2243.32, + "connectMs": 3110.55, + "taskMs": 183974.82, + "releaseMs": 1096.94, + "totalMs": 190644.5, + "aggregateActionsPerSecond": 1.01, + "sessions": [ + { + "sessionId": "f85ce349-1652-414c-ae5d-61b7de1c66bd", + "createMs": 1335.85, + "connectMs": 3109.96, + "taskMs": 183973.56, + "actionsCompleted": 26, + "actionsPerSecond": 0.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2200.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4238.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 22059.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 415.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 21099.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5429.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 16059.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 409.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1494.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3428.59, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1286.45, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2922.16, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 14853.95, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 413.36, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 17924.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 8067.42, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 8130.66, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 431.02, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1276.64, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3998.99, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1200.79, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 5096.03, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 15347.8, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 375.22, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 16988.36, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 6627.65, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 2196.36, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed\nCall log:\n - taking page screenshot\n" + }, + { + "index": 28, + "type": "textContent", + "durationMs": 0.32, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 29, + "type": "goBack", + "durationMs": 0.17, + "success": false, + "error": "page.goBack: Target page, context or browser has been closed" + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 0.13, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 31, + "type": "navigate", + "durationMs": 0.12, + "success": false, + "error": "page.goto: Target page, context or browser has been closed" + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 0.15, + "success": false, + "error": "page.screenshot: Target page, context or browser has been closed" + }, + { + "index": 34, + "type": "textContent", + "durationMs": 0.11, + "success": false, + "error": "page.textContent: Target page, context or browser has been closed" + }, + { + "index": 35, + "type": "click", + "durationMs": 0.1, + "success": false, + "error": "page.waitForSelector: Target page, context or browser has been closed" + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 38, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 39, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 40, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "2c58faea-cb80-48f8-a2e3-b04c69f95b38", + "createMs": 1294.2, + "connectMs": 2670.42, + "taskMs": 173804.54, + "actionsCompleted": 40, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2044.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4630.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10498.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 979.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14952.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3050.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4799.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 469.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 956.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4095.73, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1048.28, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3840.08, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 5331.14, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 394, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 16777.62, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 4007.47, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 5052.67, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 896.22, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 2036.75, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 5733.28, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 823, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3480.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 5455.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 375.56, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 15428.75, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 3022.01, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 4620.84, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 421.12, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1812.42, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 3600.9, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 1460.53, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 3504.48, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 7179, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 389.69, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 14608.65, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3816.9, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 5514.43, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 985.07, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 919.13, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 4790.7, + "success": true + } + ] + }, + { + "sessionId": "3fbc2dff-f915-409d-a522-8b95eeb57e06", + "createMs": 1850, + "connectMs": 2733, + "taskMs": 168209.23, + "actionsCompleted": 40, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1608.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5440.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8168.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 376.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16704.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3913.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4355.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 449.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 958, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3593.72, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1520.69, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2863.58, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 4586.02, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 975.37, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 18369, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 3379.51, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 4729.77, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 979.48, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 854.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3965.15, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1344.3, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3366.67, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 3193.51, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 405.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 13545.74, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 4718.7, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3895.39, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 997.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 1240.29, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 3578.82, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 821.95, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 4381.79, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 3705.23, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 430.41, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 21517.49, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 2640.4, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 4093.56, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 368.98, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1701.94, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 4469.66, + "success": true + } + ] + }, + { + "sessionId": "2650c45a-8092-43c2-9d0e-ebcdf1724e58", + "createMs": 2240.56, + "connectMs": 3050.99, + "taskMs": 174658.04, + "actionsCompleted": 40, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1727.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3247.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10144.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 382.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 16253.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5202.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 10379.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 405.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1012.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4069.86, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 1184.48, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 2889.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 9707.51, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 420.13, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 13675.7, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2486.07, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 8726.27, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 391.78, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 1020.54, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2898.2, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 1084.3, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 3342.37, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 10241.5, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 410.88, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 14751.54, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2592.65, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 5803.5, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 380.6, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 947.33, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2515.56, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 1916.16, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 3331.88, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 5108.27, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 275.8, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 11808.26, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 3425.47, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 6347.8, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 298.24, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 1033.99, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 2817.7, + "success": true + } + ] + }, + { + "sessionId": "22f9afa0-86bf-4902-a49a-0a5847eb6b45", + "createMs": 1095.12, + "connectMs": 2332.21, + "taskMs": 156939.57, + "actionsCompleted": 40, + "actionsPerSecond": 0.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1716.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4086.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3536.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 409.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 21267.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5246.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3139.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 395.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 887.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3875.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 716.64, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 3243.9, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 3255.03, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 392, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 21193.2, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 2766.94, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 3703.99, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 391.3, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 863.99, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 2340.59, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 585.08, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 2379.07, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 2947.82, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 384.95, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 18788.57, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2736.1, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 3270.9, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 422.01, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 954.8, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 2950.77, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 900.13, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 2810.85, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 4799.13, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 394.49, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 21867.98, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 2538.67, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 2426.15, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 211.57, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 551.48, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 1590.66, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2243.32, + "p95": 2243.32, + "p99": 2243.32, + "samples": 1 + }, + "connectMs": { + "median": 3110.55, + "p95": 3110.55, + "p99": 3110.55, + "samples": 1 + }, + "taskMs": { + "median": 183974.82, + "p95": 183974.82, + "p99": 183974.82, + "samples": 1 + }, + "loopMs": { + "median": 43284.13, + "p95": 59305.44, + "p99": 59305.44, + "samples": 20 + }, + "actionsPerSecond": { + "median": 1.01, + "p95": 1.01, + "p99": 1.01, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.23, + "p95": 0.25, + "p99": 0.25, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 1286.45, + "p95": 2200.28, + "p99": 2200.28, + "samples": 19 + }, + "waitForSelector": { + "median": 3492.29, + "p95": 5429.29, + "p99": 5733.28, + "samples": 56 + }, + "screenshot": { + "median": 5108.27, + "p95": 15347.8, + "p99": 16059.4, + "samples": 37 + }, + "textContent": { + "median": 405.73, + "p95": 979.54, + "p99": 985.07, + "samples": 37 + }, + "click": { + "median": 16777.62, + "p95": 21867.98, + "p99": 21867.98, + "samples": 19 + }, + "goBack": { + "median": 985.2, + "p95": 2036.75, + "p99": 2036.75, + "samples": 18 + } + } + }, + "compositeScore": 32.35, + "successRate": 0.8, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 2121.15, + "connectMs": 4136.11, + "taskMs": 26418.13, + "releaseMs": 1161.48, + "totalMs": 33897.28, + "aggregateActionsPerSecond": 7.57, + "sessions": [ + { + "sessionId": "2195e65d-c08d-43a6-97a7-86a7da340ea0", + "createMs": 1173.97, + "connectMs": 482.32, + "taskMs": 21665.88, + "actionsCompleted": 40, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 338.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 484.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 683.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1593.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 571.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 48.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 405.05, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 224.18, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 393.01, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 662.55, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 253.56, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1640.59, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 441.13, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 962.23, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 50, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.17, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 433.28, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 242.46, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 403.62, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 634.02, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 49.48, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4277.24, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 461.38, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 593.18, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 49.58, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 121, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 409.12, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 221.5, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 410.21, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 665.97, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 50.24, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1558.72, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 425.89, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 604.45, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 49.2, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 119.26, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 389.01, + "success": true + } + ] + }, + { + "sessionId": "caab8ec8-1186-4af9-85b7-bef2c2112dc4", + "createMs": 2085.52, + "connectMs": 1529.86, + "taskMs": 22096.73, + "actionsCompleted": 40, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1577.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 665.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 630.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 57.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1740.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 471.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 551.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 440.21, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 210.72, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 453.77, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 604.19, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 57.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1511, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 449.12, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 552.96, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 56.56, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 132.23, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 436.19, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 193.29, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 445.89, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 611.88, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 58.08, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 1539.35, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 2634.19, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 655.99, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 56.68, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 126.58, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 459.45, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 221.38, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 447.83, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 690.77, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 56.7, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1481.89, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 441.21, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 548.59, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 60.38, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 128.97, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 447.27, + "success": true + } + ] + }, + { + "sessionId": "d686b6d2-5692-4bd4-8098-d217f749e250", + "createMs": 2119.49, + "connectMs": 4135.37, + "taskMs": 22623.41, + "actionsCompleted": 40, + "actionsPerSecond": 1.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 851.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 549.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 611.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1494.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 471.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 632.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 132.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 434.63, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 271.76, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 446.38, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 594.84, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 54.26, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1645.79, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 970.09, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 665.47, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 53.77, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 128.83, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 458.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 234.34, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 428.16, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 577.49, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 53.82, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4177.77, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 455.02, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 652.25, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 56.22, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 130.3, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 458.9, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 245.88, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 442.08, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 583.19, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 56.44, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1773.18, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 454.92, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 640.51, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 54.11, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 124.64, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 446.65, + "success": true + } + ] + }, + { + "sessionId": "ffca5d27-bc49-4ef6-9251-267b66c776d0", + "createMs": 1151.03, + "connectMs": 374.84, + "taskMs": 22876.44, + "actionsCompleted": 40, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 466.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 486.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 575.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1616.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 839.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 585.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 388.98, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 219.08, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 401.04, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 549.41, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 50.14, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 1727.21, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 1213.61, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 593.55, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 55.49, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 121.15, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 396.46, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 251.43, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 395.27, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 569.64, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 48.84, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 4244.03, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 780.85, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 583.79, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 54.69, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 123.27, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 399.12, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 228.72, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 400.44, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 573.44, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 51.22, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 1648.7, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 764.6, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 669.4, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 54.32, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 121.72, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 395.23, + "success": true + } + ] + }, + { + "sessionId": "c05c7489-ff0f-4c40-95a1-4025ebf1c805", + "createMs": 1154.54, + "connectMs": 451.34, + "taskMs": 26415.94, + "actionsCompleted": 40, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 667.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 478.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 674.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2599.94, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 454.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 631.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 435.96, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 219.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 407.62, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 753.82, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 52.08, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 2968.02, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 499.44, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 659.52, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 53.01, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 123.93, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 3088.26, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 355.4, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 416.85, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 634, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 51.31, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 2451.53, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 451.68, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 651.43, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 55.23, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 123.01, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 418.49, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 225.68, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 425.22, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 652.97, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 51.93, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 2653.4, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 530.4, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 663.44, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 51.82, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 138.86, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 417.74, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 2121.15, + "p95": 2121.15, + "p99": 2121.15, + "samples": 1 + }, + "connectMs": { + "median": 4136.11, + "p95": 4136.11, + "p99": 4136.11, + "samples": 1 + }, + "taskMs": { + "median": 26418.13, + "p95": 26418.13, + "p99": 26418.13, + "samples": 1 + }, + "loopMs": { + "median": 5308.41, + "p95": 7450.93, + "p99": 7450.93, + "samples": 20 + }, + "actionsPerSecond": { + "median": 7.57, + "p95": 7.57, + "p99": 7.57, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.77, + "p95": 1.85, + "p99": 1.85, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 238.4, + "p95": 851.52, + "p99": 851.52, + "samples": 20 + }, + "waitForSelector": { + "median": 446.52, + "p95": 780.85, + "p99": 970.09, + "samples": 60 + }, + "screenshot": { + "median": 631.04, + "p95": 683.62, + "p99": 690.77, + "samples": 40 + }, + "textContent": { + "median": 53.89, + "p95": 58.08, + "p99": 58.11, + "samples": 40 + }, + "click": { + "median": 1687.96, + "p95": 4244.03, + "p99": 4244.03, + "samples": 20 + }, + "goBack": { + "median": 124.72, + "p95": 132.79, + "p99": 132.79, + "samples": 20 + } + } + }, + "compositeScore": 79.94, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 5, + "rounds": [ + { + "sessionsAttempted": 5, + "sessionsAlive": 5, + "createMs": 716.31, + "connectMs": 99.98, + "taskMs": 13422, + "releaseMs": 58.39, + "totalMs": 14306.93, + "aggregateActionsPerSecond": 14.9, + "sessions": [ + { + "sessionId": "sess_52f005f0e89442ec8fd6d0b395690452", + "createMs": 714.48, + "connectMs": 96.18, + "taskMs": 6992.44, + "actionsCompleted": 40, + "actionsPerSecond": 5.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 531.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 144.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 316.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 283.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.53, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 299.55, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 212.88, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 172.3, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 9.54, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 333.39, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 296.63, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 169.65, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.45, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 42.61, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 96.72, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 234.26, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 333.68, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 159.02, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 328.89, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 295.31, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 163.09, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 10.32, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 54.26, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 89.09, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 200.27, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 242.2, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 362.07, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 6.62, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 371.95, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 238.04, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 196.22, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 56.8, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 164.18, + "success": true + } + ] + }, + { + "sessionId": "sess_fec24b766bd44391969596c882b71ace", + "createMs": 704.75, + "connectMs": 95.72, + "taskMs": 9623.77, + "actionsCompleted": 40, + "actionsPerSecond": 4.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 652.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 261.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 183.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 487.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.7, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 473.76, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 287.25, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 233.9, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 4.98, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 323.47, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 295.46, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 411.28, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 9.94, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 105.4, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 221.59, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 347.57, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 190.09, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 490.24, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 12.05, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 483.33, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 236.67, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 378.43, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8.96, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 77.54, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 144.55, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 279.11, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 364.26, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 298.12, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 35.07, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 426.61, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 268.01, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 343.85, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 73.66, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 282.62, + "success": true + } + ] + }, + { + "sessionId": "sess_7673df71d431477192d9bf7cc7bb8035", + "createMs": 476.95, + "connectMs": 99.59, + "taskMs": 9431.15, + "actionsCompleted": 40, + "actionsPerSecond": 4.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 746.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 202.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 529.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 215.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 138.83, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 452.13, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 236.05, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 224.96, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 12.18, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 397.6, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 311.75, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 359.54, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 6.58, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 56.94, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 163.66, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 435.59, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 215.47, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 214.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 7.67, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 397.47, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 491.7, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 241.08, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 91.7, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 130.24, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 322.71, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 259.16, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 220.54, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 10.66, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 791.08, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 460.32, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 261.79, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 9, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 76.81, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 215.3, + "success": true + } + ] + }, + { + "sessionId": "sess_caf843bfacf446d5af955e7ed5e8beaa", + "createMs": 439.84, + "connectMs": 92.68, + "taskMs": 13419.81, + "actionsCompleted": 40, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 564.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 477.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1157.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 614.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 379.37, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 268.99, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 322.61, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 272.77, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 11.51, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 534.48, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 781.97, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 562.61, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 28.9, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 64.42, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 167.01, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 339.36, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 266.55, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 254.04, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 732.96, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 575.03, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 759.82, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 14.38, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 84.62, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 320.49, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 393.62, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 143.45, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 424.9, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 10.35, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 479.84, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 768.57, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 702.31, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 15.11, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 88.72, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 155.09, + "success": true + } + ] + }, + { + "sessionId": "sess_eb549bdaa0254f62bed638d3cd1fc21c", + "createMs": 456.84, + "connectMs": 95.74, + "taskMs": 10869.82, + "actionsCompleted": 40, + "actionsPerSecond": 3.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 762.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 525.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 708.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 307.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 89.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 213.01, + "success": true + }, + { + "index": 11, + "type": "navigate", + "durationMs": 349.05, + "success": true + }, + { + "index": 12, + "type": "waitForSelector", + "durationMs": 96.99, + "success": true + }, + { + "index": 13, + "type": "screenshot", + "durationMs": 537.83, + "success": true + }, + { + "index": 14, + "type": "textContent", + "durationMs": 14.81, + "success": true + }, + { + "index": 15, + "type": "click", + "durationMs": 513.33, + "success": true + }, + { + "index": 16, + "type": "waitForSelector", + "durationMs": 364.78, + "success": true + }, + { + "index": 17, + "type": "screenshot", + "durationMs": 468.19, + "success": true + }, + { + "index": 18, + "type": "textContent", + "durationMs": 12.76, + "success": true + }, + { + "index": 19, + "type": "goBack", + "durationMs": 87.03, + "success": true + }, + { + "index": 20, + "type": "waitForSelector", + "durationMs": 165.41, + "success": true + }, + { + "index": 21, + "type": "navigate", + "durationMs": 345.69, + "success": true + }, + { + "index": 22, + "type": "waitForSelector", + "durationMs": 388.53, + "success": true + }, + { + "index": 23, + "type": "screenshot", + "durationMs": 348.51, + "success": true + }, + { + "index": 24, + "type": "textContent", + "durationMs": 14.11, + "success": true + }, + { + "index": 25, + "type": "click", + "durationMs": 524.71, + "success": true + }, + { + "index": 26, + "type": "waitForSelector", + "durationMs": 630.28, + "success": true + }, + { + "index": 27, + "type": "screenshot", + "durationMs": 347.97, + "success": true + }, + { + "index": 28, + "type": "textContent", + "durationMs": 8.32, + "success": true + }, + { + "index": 29, + "type": "goBack", + "durationMs": 88.14, + "success": true + }, + { + "index": 30, + "type": "waitForSelector", + "durationMs": 119.65, + "success": true + }, + { + "index": 31, + "type": "navigate", + "durationMs": 319.21, + "success": true + }, + { + "index": 32, + "type": "waitForSelector", + "durationMs": 215.83, + "success": true + }, + { + "index": 33, + "type": "screenshot", + "durationMs": 253.76, + "success": true + }, + { + "index": 34, + "type": "textContent", + "durationMs": 13.66, + "success": true + }, + { + "index": 35, + "type": "click", + "durationMs": 528.45, + "success": true + }, + { + "index": 36, + "type": "waitForSelector", + "durationMs": 491.36, + "success": true + }, + { + "index": 37, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 38, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 39, + "type": "goBack", + "durationMs": 139.78, + "success": true + }, + { + "index": 40, + "type": "waitForSelector", + "durationMs": 104.3, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 4 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 716.31, + "p95": 716.31, + "p99": 716.31, + "samples": 1 + }, + "connectMs": { + "median": 99.98, + "p95": 99.98, + "p99": 99.98, + "samples": 1 + }, + "taskMs": { + "median": 13422, + "p95": 13422, + "p99": 13422, + "samples": 1 + }, + "loopMs": { + "median": 2390.91, + "p95": 3354.02, + "p99": 3354.02, + "samples": 20 + }, + "actionsPerSecond": { + "median": 14.9, + "p95": 14.9, + "p99": 14.9, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 4.16, + "p95": 5.72, + "p99": 5.72, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 348.31, + "p95": 746.02, + "p99": 746.02, + "samples": 20 + }, + "waitForSelector": { + "median": 250.68, + "p95": 575.03, + "p99": 708.75, + "samples": 60 + }, + "screenshot": { + "median": 267.28, + "p95": 562.61, + "p99": 614.78, + "samples": 40 + }, + "textContent": { + "median": 9.76, + "p95": 15.11, + "p99": 24.5, + "samples": 40 + }, + "click": { + "median": 478.76, + "p95": 732.96, + "p99": 732.96, + "samples": 20 + }, + "goBack": { + "median": 77.17, + "p95": 114.36, + "p99": 114.36, + "samples": 20 + } + } + }, + "compositeScore": 89.08, + "successRate": 1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c50/2026-08-14.json b/results/browser-concurrent/c50/2026-08-14.json new file mode 100644 index 00000000..98f1734d --- /dev/null +++ b/results/browser-concurrent/c50/2026-08-14.json @@ -0,0 +1,17427 @@ +{ + "version": "1.0", + "timestamp": "2026-08-14T18:36:03.256Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 50, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 386.25, + "connectMs": 5288.95, + "taskMs": 5770.04, + "releaseMs": 418.62, + "totalMs": 12076.06, + "aggregateActionsPerSecond": 86.65, + "sessions": [ + { + "sessionId": "13477695-02b6-4418-b459-a2e888fb9a90", + "createMs": 362.05, + "connectMs": 277.15, + "taskMs": 2504.88, + "actionsCompleted": 10, + "actionsPerSecond": 3.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 595.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 278.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 466.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 533.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 243.04, + "success": true + } + ] + }, + { + "sessionId": "5bfac9f6-e154-4173-85da-a3991a2e5482", + "createMs": 377.3, + "connectMs": 300.03, + "taskMs": 4206.31, + "actionsCompleted": 10, + "actionsPerSecond": 2.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1244.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.38, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 683.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1133.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 246.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 327.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 302.08, + "success": true + } + ] + }, + { + "sessionId": "44e57413-2e2d-4797-80b1-d190ee17d2ea", + "createMs": 353.65, + "connectMs": 265.28, + "taskMs": 3498.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 883.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 106.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 494.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 736.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 620.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 369.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.83, + "success": true + } + ] + }, + { + "sessionId": "a811fd8f-0137-4776-8532-b199c7ed2b31", + "createMs": 356.2, + "connectMs": 262.63, + "taskMs": 2484.57, + "actionsCompleted": 10, + "actionsPerSecond": 4.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 598.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 240.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 251.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 649.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 377.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 71.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.77, + "success": true + } + ] + }, + { + "sessionId": "29ee8a8b-9f64-46c5-95cc-d9a825c3c1f1", + "createMs": 305.18, + "connectMs": 225.97, + "taskMs": 3394.95, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1156.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 545.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 727.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 239.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.99, + "success": true + } + ] + }, + { + "sessionId": "24074249-2e14-4ae8-be25-aa562626940e", + "createMs": 360.05, + "connectMs": 279.53, + "taskMs": 4554.86, + "actionsCompleted": 10, + "actionsPerSecond": 2.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 830.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 94.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 269.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1056.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1463.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 316.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 135.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 362.38, + "success": true + } + ] + }, + { + "sessionId": "28181fa1-5cc4-4001-8c9c-2e637d9b65a2", + "createMs": 328.68, + "connectMs": 240.96, + "taskMs": 3518.16, + "actionsCompleted": 10, + "actionsPerSecond": 2.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1147.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 112.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 504.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 654.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 408.85, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 329.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 272.33, + "success": true + } + ] + }, + { + "sessionId": "84e5f37d-b071-40e9-ab5e-b5dc2b7b4901", + "createMs": 339.06, + "connectMs": 257.07, + "taskMs": 2659.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 715.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 287.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 491.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 480.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.26, + "success": true + } + ] + }, + { + "sessionId": "551e2a18-7d13-4bf0-915c-e2ba6734b5ad", + "createMs": 349.24, + "connectMs": 302.59, + "taskMs": 3352.49, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1089.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 461.77, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 663.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 347.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 381.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.69, + "success": true + } + ] + }, + { + "sessionId": "375a3839-8e30-45b3-b260-7b5667ee1443", + "createMs": 331.86, + "connectMs": 236.36, + "taskMs": 2202.38, + "actionsCompleted": 10, + "actionsPerSecond": 4.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 485.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 204.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 178.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 252.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 644.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 43.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 74.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 226.06, + "success": true + } + ] + }, + { + "sessionId": "a381ed9c-138c-4d53-898d-8492a8abb734", + "createMs": 347.09, + "connectMs": 274.82, + "taskMs": 3124.6, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1146.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 111.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 391.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 33.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 644.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 240.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 368.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.94, + "success": true + } + ] + }, + { + "sessionId": "020612c0-93c0-4d1b-9655-7045ec24bc2d", + "createMs": 339.31, + "connectMs": 252.31, + "taskMs": 2620.68, + "actionsCompleted": 10, + "actionsPerSecond": 3.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 734.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 208.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 785.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 278.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 239.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 236.8, + "success": true + } + ] + }, + { + "sessionId": "aad1a947-4fb1-44a5-b13f-bb975674f815", + "createMs": 308.66, + "connectMs": 245.08, + "taskMs": 3297.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 869.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 126.38, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 243.72, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1008.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 324.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 462.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 210.65, + "success": true + } + ] + }, + { + "sessionId": "23f9d904-24af-4a0c-9b12-f95277557fa9", + "createMs": 367.24, + "connectMs": 297.62, + "taskMs": 2808.86, + "actionsCompleted": 10, + "actionsPerSecond": 3.56, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 701.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 110.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 856.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 304.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.62, + "success": true + } + ] + }, + { + "sessionId": "52182a7d-d37b-447a-936e-6fabac4edf31", + "createMs": 304.16, + "connectMs": 234.27, + "taskMs": 4668.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 699.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 297.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 230.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 874.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1458.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 656.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 138.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 292.3, + "success": true + } + ] + }, + { + "sessionId": "d6cb5cd2-4adf-472e-bf92-371ecb4ab649", + "createMs": 336.33, + "connectMs": 255.31, + "taskMs": 3553.79, + "actionsCompleted": 10, + "actionsPerSecond": 2.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1165, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 157.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 573.77, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 33.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 503.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 530.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.8, + "success": true + } + ] + }, + { + "sessionId": "73e4608a-e7b6-40e2-af1c-11d96bfe16a0", + "createMs": 316.19, + "connectMs": 231.43, + "taskMs": 4036.29, + "actionsCompleted": 10, + "actionsPerSecond": 2.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1421.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 443.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 402.75, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 971.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 251.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.14, + "success": true + } + ] + }, + { + "sessionId": "481674ba-8402-4134-bcf7-964adf96d634", + "createMs": 358.7, + "connectMs": 287.83, + "taskMs": 2695.25, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 660.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 189.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 243.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 861.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 390.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.13, + "success": true + } + ] + }, + { + "sessionId": "6f8e17e9-6fee-43d5-b78f-d3a7f6e6c2be", + "createMs": 354.26, + "connectMs": 274.08, + "taskMs": 3643.16, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 986.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 122.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 496.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1017.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 228.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 404.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 289.98, + "success": true + } + ] + }, + { + "sessionId": "a02a14c1-e4cd-447b-9541-9fc02f9b5e1a", + "createMs": 307.91, + "connectMs": 246.21, + "taskMs": 4052.45, + "actionsCompleted": 10, + "actionsPerSecond": 2.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1765.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 210.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 383.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 626.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 333.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 406.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.07, + "success": true + } + ] + }, + { + "sessionId": "e2f3ba4e-ee9c-4fb3-9a67-b2c29a3f1d94", + "createMs": 304.06, + "connectMs": 229.79, + "taskMs": 3543.55, + "actionsCompleted": 10, + "actionsPerSecond": 2.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1074.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 150.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 448.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 65.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 846.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 330.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.14, + "success": true + } + ] + }, + { + "sessionId": "4eb68c7d-c808-48bd-8181-618bceda5021", + "createMs": 365.06, + "connectMs": 283.43, + "taskMs": 3017.58, + "actionsCompleted": 10, + "actionsPerSecond": 3.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1018.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 263.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 772.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 304.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 324.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 160.23, + "success": true + } + ] + }, + { + "sessionId": "1e2a7a04-a34f-4fe1-9cc7-c144d08f54d0", + "createMs": 324.17, + "connectMs": 250.53, + "taskMs": 2767.71, + "actionsCompleted": 10, + "actionsPerSecond": 3.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 224.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 573.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 569.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 300.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.68, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 87.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.6, + "success": true + } + ] + }, + { + "sessionId": "b30a90d9-073f-47b1-8da8-25e1052968fd", + "createMs": 370.14, + "connectMs": 296.69, + "taskMs": 3019.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1003.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 360.72, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 747.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 142.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 440.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.6, + "success": true + } + ] + }, + { + "sessionId": "82ccdec8-f444-47aa-b9bd-3324f9c21394", + "createMs": 334, + "connectMs": 246.81, + "taskMs": 3984.33, + "actionsCompleted": 10, + "actionsPerSecond": 2.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1007.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 112.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 313.73, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1120.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 701.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 70.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 363.86, + "success": true + } + ] + }, + { + "sessionId": "a790de6e-ee6c-4719-bd01-a3a595afcfe6", + "createMs": 310.66, + "connectMs": 239.97, + "taskMs": 3121.36, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 304.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1202.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 177.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 339.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 229.48, + "success": true + } + ] + }, + { + "sessionId": "7e0ac19c-0852-4109-8ad0-3b8450a3e758", + "createMs": 327.39, + "connectMs": 228.26, + "taskMs": 5767.97, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2829.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 68.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 570.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 997.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 478.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 110.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 402.03, + "success": true + } + ] + }, + { + "sessionId": "fe8b05ee-5f63-4dcf-9dda-429363e5cb8e", + "createMs": 364.84, + "connectMs": 302.52, + "taskMs": 2503.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 613.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 315.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 413.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 362.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 233.49, + "success": true + } + ] + }, + { + "sessionId": "2ab74e2a-d774-4db8-a666-9289a074ac79", + "createMs": 339.47, + "connectMs": 252.8, + "taskMs": 3065.74, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 888.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 366.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 859.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 365.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 224.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.8, + "success": true + } + ] + }, + { + "sessionId": "05b62773-1337-433a-ad9f-a9dabf738a79", + "createMs": 358.63, + "connectMs": 276.79, + "taskMs": 3067.02, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1007.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 327.19, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 778.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 312.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 202.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 279.35, + "success": true + } + ] + }, + { + "sessionId": "fd2dbad9-0e80-49e7-9015-a82362f7ad49", + "createMs": 384.56, + "connectMs": 296.31, + "taskMs": 3286.8, + "actionsCompleted": 10, + "actionsPerSecond": 3.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 243.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 213.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 827.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 772.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.95, + "success": true + } + ] + }, + { + "sessionId": "38705a8e-16d0-40e4-88e9-cc59226e96e2", + "createMs": 330.03, + "connectMs": 241.69, + "taskMs": 3392.32, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1088.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 80.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 337.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 717.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 444.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.87, + "success": true + } + ] + }, + { + "sessionId": "9be2e4ad-4302-45ad-a21f-cc65c825396b", + "createMs": 330.77, + "connectMs": 244.9, + "taskMs": 5365.44, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1921.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 200.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 329.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1139.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 969.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 552.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.18, + "success": true + } + ] + }, + { + "sessionId": "de7cf507-8cba-480b-9921-bd6a0f4a0188", + "createMs": 303.97, + "connectMs": 5287.22, + "taskMs": 4059.42, + "actionsCompleted": 10, + "actionsPerSecond": 2.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 861.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 244.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 952.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1057.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 470.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 311.06, + "success": true + } + ] + }, + { + "sessionId": "1751146b-5416-4332-b60f-68284c881213", + "createMs": 357.56, + "connectMs": 275.42, + "taskMs": 3307.67, + "actionsCompleted": 10, + "actionsPerSecond": 3.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1125.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 101.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 86.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 650.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 396.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 375.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 221.02, + "success": true + } + ] + }, + { + "sessionId": "885c973a-2ab0-44ab-8f61-8ab83400c182", + "createMs": 367.53, + "connectMs": 404.65, + "taskMs": 2479.58, + "actionsCompleted": 10, + "actionsPerSecond": 4.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 430.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 286.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 282.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 540.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 374.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 335.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 161.05, + "success": true + } + ] + }, + { + "sessionId": "df914edc-5b52-4249-9dff-b70b1e1ccd76", + "createMs": 355.58, + "connectMs": 280.07, + "taskMs": 3574.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1072.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 329.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 938.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 513.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 342.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 229.05, + "success": true + } + ] + }, + { + "sessionId": "0dbd15b2-97f4-42f6-b6ad-4783a6fae220", + "createMs": 341.7, + "connectMs": 258.36, + "taskMs": 3217.65, + "actionsCompleted": 10, + "actionsPerSecond": 3.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 569.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 469.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 870.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 272.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 301.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 277.85, + "success": true + } + ] + }, + { + "sessionId": "df04ac92-a5c3-4d70-9894-8672abfa358e", + "createMs": 305.6, + "connectMs": 243.28, + "taskMs": 3402.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.94, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1138.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 95.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 666.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 540.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 344.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 337.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.19, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.53, + "success": true + } + ] + }, + { + "sessionId": "e5f22a52-f39f-4338-89c4-8d74058b7412", + "createMs": 358.02, + "connectMs": 270.84, + "taskMs": 3393.72, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 764.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 250.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 311.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 987.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 286.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 389.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 343.02, + "success": true + } + ] + }, + { + "sessionId": "891c7b4d-cfdd-4762-b173-f9799fbd3ea6", + "createMs": 367.22, + "connectMs": 274.25, + "taskMs": 2978.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 772.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 75.65, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 281.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 842.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 333.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 36.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 187.95, + "success": true + } + ] + }, + { + "sessionId": "41df102f-0537-4a96-89bb-71e674b44aca", + "createMs": 351.63, + "connectMs": 282.45, + "taskMs": 3883.65, + "actionsCompleted": 10, + "actionsPerSecond": 2.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2210.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 131.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 261.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 246.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 467.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 291.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.13, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 211.52, + "success": true + } + ] + }, + { + "sessionId": "88510b12-048c-4171-97f4-3953931e05cd", + "createMs": 366.83, + "connectMs": 283.34, + "taskMs": 2432.98, + "actionsCompleted": 10, + "actionsPerSecond": 4.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 587.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 86.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 267.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 403.83, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 482.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 68.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 279.89, + "success": true + } + ] + }, + { + "sessionId": "b5dd2639-31e0-450f-a2f6-2b6c802be8ce", + "createMs": 334.31, + "connectMs": 245.32, + "taskMs": 3119.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1103.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 477.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 609.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 322.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 221.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.3, + "success": true + } + ] + }, + { + "sessionId": "3d8a5c0c-27e0-4e63-8bc9-aee2d3496706", + "createMs": 362.61, + "connectMs": 273.05, + "taskMs": 2821.95, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 688.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 247.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 289.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 917.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 260.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 94.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 214.88, + "success": true + } + ] + }, + { + "sessionId": "250cee64-a97e-49eb-b0b4-5e519ae61bd4", + "createMs": 374.72, + "connectMs": 397.6, + "taskMs": 3775.33, + "actionsCompleted": 10, + "actionsPerSecond": 2.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1165.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 392.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 605.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 680.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 365.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 74.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314, + "success": true + } + ] + }, + { + "sessionId": "dd94f0a1-18c5-40d1-ad49-a9549140fac8", + "createMs": 376.04, + "connectMs": 290.93, + "taskMs": 3860.9, + "actionsCompleted": 10, + "actionsPerSecond": 2.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 928.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 84.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 449.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 988.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 585.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 284.22, + "success": true + } + ] + }, + { + "sessionId": "f262a569-8d0e-4094-a28b-fa316cc64820", + "createMs": 308.05, + "connectMs": 245.42, + "taskMs": 3990.9, + "actionsCompleted": 10, + "actionsPerSecond": 2.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1437.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 312.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 410.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1000.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 213.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.72, + "success": true + } + ] + }, + { + "sessionId": "bff8db1f-2d2b-44e7-b694-14f70db47400", + "createMs": 376.06, + "connectMs": 389.83, + "taskMs": 4350.36, + "actionsCompleted": 10, + "actionsPerSecond": 2.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 807.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 99.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 301.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.16, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2014.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 368.83, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.37, + "success": true + } + ] + }, + { + "sessionId": "b89b77c9-911c-437b-8fbf-efc2050d29c5", + "createMs": 305.11, + "connectMs": 321.08, + "taskMs": 4262.69, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 927.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 109.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 349.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1227.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 672.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 646.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 237.12, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 386.25, + "p95": 386.25, + "p99": 386.25, + "samples": 1 + }, + "connectMs": { + "median": 5288.95, + "p95": 5288.95, + "p99": 5288.95, + "samples": 1 + }, + "taskMs": { + "median": 5770.04, + "p95": 5770.04, + "p99": 5770.04, + "samples": 1 + }, + "loopMs": { + "median": 3372.41, + "p95": 4350.36, + "p99": 4668.58, + "samples": 50 + }, + "actionsPerSecond": { + "median": 86.65, + "p95": 86.65, + "p99": 86.65, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.97, + "p95": 3.99, + "p99": 4.03, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 927.78, + "p95": 1437.87, + "p99": 1921.38, + "samples": 50 + }, + "waitForSelector": { + "median": 229.26, + "p95": 620.46, + "p99": 772.52, + "samples": 150 + }, + "screenshot": { + "median": 341.14, + "p95": 504.92, + "p99": 573.77, + "samples": 100 + }, + "textContent": { + "median": 8.06, + "p95": 40.75, + "p99": 54.72, + "samples": 100 + }, + "click": { + "median": 741.95, + "p95": 1133.69, + "p99": 1202.01, + "samples": 50 + }, + "goBack": { + "median": 47.98, + "p95": 87.78, + "p99": 110.47, + "samples": 50 + } + } + }, + "compositeScore": 86.7, + "successRate": 1, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 563.65, + "connectMs": 387.11, + "taskMs": 5527.91, + "releaseMs": 340.95, + "totalMs": 6854.78, + "aggregateActionsPerSecond": 90.45, + "sessions": [ + { + "sessionId": "2f8c48e9-cea5-4f59-bd34-6cedebe14e49", + "createMs": 255.98, + "connectMs": 221.75, + "taskMs": 3258.58, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 305.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1090.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 413.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 431.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 115.43, + "success": true + } + ] + }, + { + "sessionId": "b1b8f01b-3d0e-4d87-baa3-4c6407638a98", + "createMs": 257.64, + "connectMs": 247.33, + "taskMs": 3755.33, + "actionsCompleted": 10, + "actionsPerSecond": 2.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 761.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 240.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1630.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 254.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 275.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.72, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 80.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.53, + "success": true + } + ] + }, + { + "sessionId": "0fee63b8-4e76-4fbf-9bd8-57aeafa201ce", + "createMs": 263.04, + "connectMs": 254.89, + "taskMs": 3591.73, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 554.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 277.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 589.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 927.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 570.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 384.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.78, + "success": true + } + ] + }, + { + "sessionId": "dfa66eb5-3ef9-42aa-93bc-d9d6216b3bf4", + "createMs": 441.17, + "connectMs": 251.53, + "taskMs": 3073.7, + "actionsCompleted": 10, + "actionsPerSecond": 3.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 547.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 162.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 320.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 631.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 563.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 659.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 125.51, + "success": true + } + ] + }, + { + "sessionId": "d8eaad15-438e-4ad5-81aa-f5bee02529f5", + "createMs": 342.72, + "connectMs": 284.74, + "taskMs": 3432.12, + "actionsCompleted": 10, + "actionsPerSecond": 2.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 895.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 155.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 331.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1141.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 287, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 407.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 126.88, + "success": true + } + ] + }, + { + "sessionId": "33268fff-e523-47d5-8295-2bd954064ec3", + "createMs": 562.18, + "connectMs": 253.24, + "taskMs": 4707.38, + "actionsCompleted": 10, + "actionsPerSecond": 2.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 744.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 245.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1169.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1395.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 726.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 158.12, + "success": true + } + ] + }, + { + "sessionId": "538f8c49-bf8a-4146-9849-8ec63bb680a0", + "createMs": 396.63, + "connectMs": 274.33, + "taskMs": 3455.44, + "actionsCompleted": 10, + "actionsPerSecond": 2.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 690.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 204.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 342.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1107.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 415.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 199.64, + "success": true + } + ] + }, + { + "sessionId": "9db04763-e530-4de3-9831-2a29ae96a402", + "createMs": 390.85, + "connectMs": 267.26, + "taskMs": 3083.15, + "actionsCompleted": 10, + "actionsPerSecond": 3.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 542.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 239.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1032.13, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 473.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 360.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.54, + "success": true + } + ] + }, + { + "sessionId": "b3d991bc-0eed-4d45-a08b-873e0352de58", + "createMs": 293.05, + "connectMs": 294.59, + "taskMs": 3861.42, + "actionsCompleted": 10, + "actionsPerSecond": 2.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 587.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 223.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 459.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.4, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1349.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 490.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 502.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 126.7, + "success": true + } + ] + }, + { + "sessionId": "3663b43a-56b6-4592-9280-2819a4de3177", + "createMs": 314.2, + "connectMs": 276.03, + "taskMs": 2517.23, + "actionsCompleted": 10, + "actionsPerSecond": 3.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 449.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 221.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 225.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 501.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 486.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 365.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.28, + "success": true + } + ] + }, + { + "sessionId": "eb094562-40a4-4440-954f-813da90afad6", + "createMs": 379.86, + "connectMs": 269, + "taskMs": 3250.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 766.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 204.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 347.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 958.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 363.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 131.9, + "success": true + } + ] + }, + { + "sessionId": "f343e1b1-26d7-48ae-b791-37c7a3ba5d67", + "createMs": 415.14, + "connectMs": 291.02, + "taskMs": 3386.08, + "actionsCompleted": 10, + "actionsPerSecond": 2.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 205.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1340.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 265.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 175.23, + "success": true + } + ] + }, + { + "sessionId": "6fb10765-fcc1-47bc-b087-ac7ace52a940", + "createMs": 261.25, + "connectMs": 289.37, + "taskMs": 3170.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 644.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 271.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 337.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1012.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 371.87, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 292.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 153.59, + "success": true + } + ] + }, + { + "sessionId": "3b974a34-4a6a-4e9c-9558-ab9dd7f07bcb", + "createMs": 319.26, + "connectMs": 287.12, + "taskMs": 3356.03, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 557.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 209.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 258.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1310.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 321.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 404.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 197.97, + "success": true + } + ] + }, + { + "sessionId": "2c2f26a5-55ff-4b44-b46a-0aa5ce71b145", + "createMs": 555.19, + "connectMs": 277.76, + "taskMs": 4710.13, + "actionsCompleted": 10, + "actionsPerSecond": 2.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 572.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 192.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 234.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1028.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1943.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 517.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.92, + "success": true + } + ] + }, + { + "sessionId": "3783eca2-82c6-4e8c-a9a5-153169dba35f", + "createMs": 389.45, + "connectMs": 279.92, + "taskMs": 2704.42, + "actionsCompleted": 10, + "actionsPerSecond": 3.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 605.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 180.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 685.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 477.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 312.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.5, + "success": true + } + ] + }, + { + "sessionId": "fb0c53b3-d339-4ac0-ba69-b3771b0b1fa7", + "createMs": 274.35, + "connectMs": 299.97, + "taskMs": 3021.72, + "actionsCompleted": 10, + "actionsPerSecond": 3.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 505.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 297.07, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 905.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 552.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 269.12, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 68.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.34, + "success": true + } + ] + }, + { + "sessionId": "29faa3ef-3618-4d70-a053-bdbae45f6b72", + "createMs": 307.57, + "connectMs": 289.72, + "taskMs": 3599.1, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 599.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 228.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 395.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1083.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 561.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 450.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 78.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 164.62, + "success": true + } + ] + }, + { + "sessionId": "eafdec84-3f4e-4202-b591-b1a788131a00", + "createMs": 444.56, + "connectMs": 300.48, + "taskMs": 3301.67, + "actionsCompleted": 10, + "actionsPerSecond": 3.03, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 194.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1047.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 398.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 281.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 172.65, + "success": true + } + ] + }, + { + "sessionId": "a30da781-8a17-469b-b850-95f69d5eafba", + "createMs": 252.92, + "connectMs": 310.29, + "taskMs": 4275.9, + "actionsCompleted": 10, + "actionsPerSecond": 2.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 507.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 296.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 908.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 108.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1049.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 322.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 568.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 450.88, + "success": true + } + ] + }, + { + "sessionId": "5fc7d78c-a1a3-42cb-823a-627ff4ddc181", + "createMs": 309.56, + "connectMs": 311.66, + "taskMs": 3796.19, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 274.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 276.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1408.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 470.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 422.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 58.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.54, + "success": true + } + ] + }, + { + "sessionId": "6ca13162-1255-4d8b-b7fd-652e7b7c9729", + "createMs": 267.5, + "connectMs": 310.99, + "taskMs": 3251.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 577.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 197.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 489.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 976.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 385.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 393.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.29, + "success": true + } + ] + }, + { + "sessionId": "2fa612bf-f981-4cab-8e07-65852a84499f", + "createMs": 311.48, + "connectMs": 305.6, + "taskMs": 3138.15, + "actionsCompleted": 10, + "actionsPerSecond": 3.19, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 213.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 288.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 969.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 409.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 329.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.11, + "success": true + } + ] + }, + { + "sessionId": "ffcf2f4f-b261-4a6d-812f-dbbb45d01834", + "createMs": 360.59, + "connectMs": 293.41, + "taskMs": 2643.24, + "actionsCompleted": 10, + "actionsPerSecond": 3.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 610.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.18, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 675.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 294.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 408.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.07, + "success": true + } + ] + }, + { + "sessionId": "d4aa4a96-6767-443f-a810-282459884dbb", + "createMs": 323.92, + "connectMs": 324.23, + "taskMs": 4687.84, + "actionsCompleted": 10, + "actionsPerSecond": 2.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 743.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 270.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 380.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1721.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 704.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 265.53, + "success": true + } + ] + }, + { + "sessionId": "bd81a80b-736a-4e56-98d1-c45dcb649c00", + "createMs": 361.18, + "connectMs": 324.36, + "taskMs": 4072.28, + "actionsCompleted": 10, + "actionsPerSecond": 2.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1009.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 210.6, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1583.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 247.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.13, + "success": true + } + ] + }, + { + "sessionId": "8b2f630b-ba7a-4fc0-873a-1af73ac2352e", + "createMs": 549.58, + "connectMs": 325.91, + "taskMs": 4103.77, + "actionsCompleted": 10, + "actionsPerSecond": 2.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1028.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 623.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 68.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 714.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 772.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 471.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.66, + "success": true + } + ] + }, + { + "sessionId": "99d41653-f807-4b5d-9ee0-50b959f36230", + "createMs": 323.99, + "connectMs": 324.06, + "taskMs": 3590.86, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 728.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 178.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 370.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 978.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 376.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 685.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.18, + "success": true + } + ] + }, + { + "sessionId": "79a416ba-5ddf-4335-89e4-032d2965fe71", + "createMs": 266.03, + "connectMs": 327.91, + "taskMs": 4342.35, + "actionsCompleted": 10, + "actionsPerSecond": 2.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 617.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 310.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2081.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 269.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 628.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.03, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.86, + "success": true + } + ] + }, + { + "sessionId": "22504e07-201f-4e31-b1c5-118a8b788d97", + "createMs": 265.76, + "connectMs": 324.19, + "taskMs": 2694.57, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 547.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 191.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 863.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 319.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 253.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.41, + "success": true + } + ] + }, + { + "sessionId": "de4fda89-35da-46a9-a4c8-afa2e92a635d", + "createMs": 293.29, + "connectMs": 344.23, + "taskMs": 4202.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 797.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 335.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1232.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 920.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 435.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.79, + "success": true + } + ] + }, + { + "sessionId": "2c5d37c9-351e-4e43-9ee3-cabb06e0cf27", + "createMs": 525.45, + "connectMs": 324.29, + "taskMs": 3242.46, + "actionsCompleted": 10, + "actionsPerSecond": 3.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 818.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 351.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 874.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 420.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 393.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 119.26, + "success": true + } + ] + }, + { + "sessionId": "9b995965-d6b4-4e26-90cd-f403fa753c44", + "createMs": 266.12, + "connectMs": 385.6, + "taskMs": 4173.94, + "actionsCompleted": 10, + "actionsPerSecond": 2.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 694.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 221.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1070.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1007.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 771.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 148.56, + "success": true + } + ] + }, + { + "sessionId": "7d115a84-e1d4-4a88-923f-736448d920e3", + "createMs": 261.33, + "connectMs": 342.61, + "taskMs": 4790.39, + "actionsCompleted": 10, + "actionsPerSecond": 2.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1127.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 316.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 673.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 919.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1082.7, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 441.21, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.93, + "success": true + } + ] + }, + { + "sessionId": "c29400d6-8afb-49a4-99e7-80e291d84be3", + "createMs": 322.52, + "connectMs": 344.3, + "taskMs": 3053.88, + "actionsCompleted": 10, + "actionsPerSecond": 3.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 197.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 248.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 849.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 499.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.94, + "success": true + } + ] + }, + { + "sessionId": "839370d7-232f-419d-b0c1-13d0117b06ee", + "createMs": 261.65, + "connectMs": 344.2, + "taskMs": 3759.56, + "actionsCompleted": 10, + "actionsPerSecond": 2.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1027.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 194.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 691.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 713.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 326.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 577.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.95, + "success": true + } + ] + }, + { + "sessionId": "8cc51e1c-c85d-4a58-a073-13ae3613decf", + "createMs": 490.53, + "connectMs": 359.2, + "taskMs": 3969.12, + "actionsCompleted": 10, + "actionsPerSecond": 2.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 692.11, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 305.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.24, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1294.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 628.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 413.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.95, + "success": true + } + ] + }, + { + "sessionId": "91acc484-23bc-4496-ad70-a43eaf6adf9f", + "createMs": 304.29, + "connectMs": 344.3, + "taskMs": 3293.04, + "actionsCompleted": 10, + "actionsPerSecond": 3.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 633.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 227.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1075.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 392.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 131.52, + "success": true + } + ] + }, + { + "sessionId": "43258604-c0c2-422d-b347-f0414e51c7e9", + "createMs": 340.75, + "connectMs": 342.6, + "taskMs": 3058.06, + "actionsCompleted": 10, + "actionsPerSecond": 3.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 559.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 247.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 343.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 906.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 493.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.69, + "success": true + } + ] + }, + { + "sessionId": "17ae6f77-27d0-42eb-96c5-e2110fafbd25", + "createMs": 268.96, + "connectMs": 361.3, + "taskMs": 3947.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 789.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 243.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 300.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1537.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 437.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 362.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.67, + "success": true + } + ] + }, + { + "sessionId": "d3c93eec-193d-4a21-817b-894dc09d0b3c", + "createMs": 315.12, + "connectMs": 359.95, + "taskMs": 4501.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 542.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 710.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1892.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 227.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 357.01, + "success": true + } + ] + }, + { + "sessionId": "8127f686-7fea-4488-acd1-8e605ebef02f", + "createMs": 288.12, + "connectMs": 360.71, + "taskMs": 3654.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 895.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 202.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 306.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 38.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1168.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 452.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.41, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 93.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.76, + "success": true + } + ] + }, + { + "sessionId": "3460fbe4-2afe-404d-8753-83675d5b0723", + "createMs": 520.44, + "connectMs": 361.45, + "taskMs": 3261.99, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 537.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 211.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 223.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1428.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 257.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 369.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 151.97, + "success": true + } + ] + }, + { + "sessionId": "e24936d3-be92-48bd-8ce7-47a05b0a4036", + "createMs": 394.88, + "connectMs": 360.31, + "taskMs": 3319.52, + "actionsCompleted": 10, + "actionsPerSecond": 3.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 681.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 184.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 330.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 938.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 397.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 327.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 377.72, + "success": true + } + ] + }, + { + "sessionId": "028b3d39-806b-4e35-9f4d-dee6bc8c78b7", + "createMs": 260.95, + "connectMs": 373.91, + "taskMs": 3043.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 513.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 286.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 840.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 682.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 134.31, + "success": true + } + ] + }, + { + "sessionId": "29db680d-c350-4702-a8ea-8197247ad3cd", + "createMs": 265.63, + "connectMs": 355.73, + "taskMs": 3095.44, + "actionsCompleted": 10, + "actionsPerSecond": 3.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 580.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 182.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 292.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 604.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 615.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 401.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 237.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.44, + "success": true + } + ] + }, + { + "sessionId": "b890ec2c-7ba6-48e4-b9bd-2854a9233cd2", + "createMs": 317.29, + "connectMs": 372.22, + "taskMs": 5525.27, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2959.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 177.04, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 299.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 863.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 632.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 371.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.04, + "success": true + } + ] + }, + { + "sessionId": "5f28ee83-a850-4bcd-9f6a-1b588bfb7754", + "createMs": 387.46, + "connectMs": 377.43, + "taskMs": 3843.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 608.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 304.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1540.75, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 547.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 318.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.49, + "success": true + } + ] + }, + { + "sessionId": "4c1b1685-0bea-4cd3-aed5-a2fb89e9f09d", + "createMs": 392.2, + "connectMs": 370.44, + "taskMs": 3777.46, + "actionsCompleted": 10, + "actionsPerSecond": 2.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 768.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 180.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 288.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1246.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 590.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 463.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 66.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.46, + "success": true + } + ] + }, + { + "sessionId": "9f8aec4a-24d5-4ac1-9a8b-a1ddfa4e646f", + "createMs": 298.38, + "connectMs": 366.92, + "taskMs": 4256.34, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1296.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 414.6, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 392.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.73, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1098.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 545.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 122.59, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 563.65, + "p95": 563.65, + "p99": 563.65, + "samples": 1 + }, + "connectMs": { + "median": 387.11, + "p95": 387.11, + "p99": 387.11, + "samples": 1 + }, + "taskMs": { + "median": 5527.91, + "p95": 5527.91, + "p99": 5527.91, + "samples": 1 + }, + "loopMs": { + "median": 3523.15, + "p95": 4687.84, + "p99": 4710.13, + "samples": 50 + }, + "actionsPerSecond": { + "median": 90.45, + "p95": 90.45, + "p99": 90.45, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.84, + "p95": 3.31, + "p99": 3.71, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 662.1, + "p95": 1027.06, + "p99": 1127.19, + "samples": 50 + }, + "waitForSelector": { + "median": 212.54, + "p95": 563.88, + "p99": 632.95, + "samples": 150 + }, + "screenshot": { + "median": 355.9, + "p95": 623.16, + "p99": 685.81, + "samples": 100 + }, + "textContent": { + "median": 18.28, + "p95": 31.8, + "p99": 49.09, + "samples": 100 + }, + "click": { + "median": 1048.49, + "p95": 1583.33, + "p99": 1721.76, + "samples": 50 + }, + "goBack": { + "median": 47.13, + "p95": 68.94, + "p99": 79.96, + "samples": 50 + } + } + }, + "compositeScore": 86.04, + "successRate": 1, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 12415.24, + "connectMs": 744.54, + "taskMs": 16734.33, + "releaseMs": 294.33, + "totalMs": 30313.13, + "aggregateActionsPerSecond": 29.88, + "sessions": [ + { + "sessionId": "7108ea7a-c2a0-49e8-abca-5c3798010360", + "createMs": 8581.76, + "connectMs": 612.2, + "taskMs": 7833.52, + "actionsCompleted": 10, + "actionsPerSecond": 1.28, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 836.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 708.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 735.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.81, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2828.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 831.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 876.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 256.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 612, + "success": true + } + ] + }, + { + "sessionId": "feecc846-efed-402b-bce7-26f3fd258fa7", + "createMs": 8383.43, + "connectMs": 603.61, + "taskMs": 9782.16, + "actionsCompleted": 10, + "actionsPerSecond": 1.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1930.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 677.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 786.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 92.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3793.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 631.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 720.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 441.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 633.74, + "success": true + } + ] + }, + { + "sessionId": "10091119-bc93-439d-ad6f-176433e82507", + "createMs": 4190.99, + "connectMs": 742.98, + "taskMs": 8396.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.19, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1139, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 757.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 989.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2312.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1179.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1018.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 91.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 229.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 600.3, + "success": true + } + ] + }, + { + "sessionId": "b2c1f2bb-ae44-43d9-a95e-7bd81052ee76", + "createMs": 5051.85, + "connectMs": 554.99, + "taskMs": 7726.93, + "actionsCompleted": 10, + "actionsPerSecond": 1.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 468.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 802.38, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 930.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2114.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1370.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1044.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 204.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 642.37, + "success": true + } + ] + }, + { + "sessionId": "9795de95-0f07-4b76-aca2-75cc7e90be96", + "createMs": 8755.02, + "connectMs": 532.89, + "taskMs": 8292.6, + "actionsCompleted": 10, + "actionsPerSecond": 1.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 877.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 672.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 919.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2800.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 975.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 896.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 278.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 724.73, + "success": true + } + ] + }, + { + "sessionId": "dafac83b-6a62-4d99-ad01-97cc3abcb753", + "createMs": 8833.83, + "connectMs": 546.84, + "taskMs": 13007.37, + "actionsCompleted": 10, + "actionsPerSecond": 0.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1297.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 665.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 920.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4454.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3482.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1009.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 84.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 301.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 713.11, + "success": true + } + ] + }, + { + "sessionId": "e06a953b-074e-4f42-a731-c60a17a189d8", + "createMs": 8632.69, + "connectMs": 565.53, + "taskMs": 10123.36, + "actionsCompleted": 10, + "actionsPerSecond": 0.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1663.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 657.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 761.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3305.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 861.09, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 713.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 276.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1739.9, + "success": true + } + ] + }, + { + "sessionId": "23a41ed7-42d0-42fa-9160-9f8b9918267f", + "createMs": 5349.78, + "connectMs": 605.85, + "taskMs": 8166.28, + "actionsCompleted": 10, + "actionsPerSecond": 1.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1317.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 677.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 837.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2440.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 922.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1003.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 83.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 217.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 594.09, + "success": true + } + ] + }, + { + "sessionId": "01a8be47-a605-49c7-93dd-c8291ad654f7", + "createMs": 4458.68, + "connectMs": 612.84, + "taskMs": 8527.53, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1351.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 691.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 855.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2834.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 954.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 873.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 221.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 594.92, + "success": true + } + ] + }, + { + "sessionId": "e8cf35ea-21a5-4db4-9a64-97b10b4ee0a7", + "createMs": 4109.17, + "connectMs": 626.88, + "taskMs": 7263.2, + "actionsCompleted": 10, + "actionsPerSecond": 1.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1013.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 700.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 737.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2274.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 695.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 912.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 194.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 584.73, + "success": true + } + ] + }, + { + "sessionId": "f7b9d9b6-2513-42a5-a06c-c2b2c39a1b24", + "createMs": 5131.14, + "connectMs": 592.72, + "taskMs": 11200.89, + "actionsCompleted": 10, + "actionsPerSecond": 0.89, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 715.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1068.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4084.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2162.32, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 773.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1325.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 92.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 200.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 704.73, + "success": true + } + ] + }, + { + "sessionId": "61e3eb2d-c6aa-4091-a3d0-3a5bfb47da47", + "createMs": 3621, + "connectMs": 566.36, + "taskMs": 6627.25, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 778.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 740.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 797.13, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2078.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 610.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 713.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 207.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 556.32, + "success": true + } + ] + }, + { + "sessionId": "6e397cd3-1f33-4f61-bd78-86dd20ea1238", + "createMs": 8815.87, + "connectMs": 547.96, + "taskMs": 9165.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1525.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 636.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 813.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3559.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 859.21, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 718.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 280.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 627.75, + "success": true + } + ] + }, + { + "sessionId": "5cb78e06-a97b-499b-b025-dfc6b72bfd4e", + "createMs": 5027.42, + "connectMs": 609.78, + "taskMs": 8046.35, + "actionsCompleted": 10, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1001.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 705.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 806.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2826.98, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 891.36, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 866.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 238.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 555.53, + "success": true + } + ] + }, + { + "sessionId": "df2427c9-b904-470d-83bf-143c32e5dd39", + "createMs": 5014.29, + "connectMs": 614.19, + "taskMs": 12908.48, + "actionsCompleted": 10, + "actionsPerSecond": 0.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1481.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 677.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 830.77, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3468.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4310.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1128.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 88.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 217.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 630.2, + "success": true + } + ] + }, + { + "sessionId": "da635a40-86ec-46bc-bcf9-5e95af98cb82", + "createMs": 9138.2, + "connectMs": 553.69, + "taskMs": 7720.38, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1314.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 646, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 758.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2186.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1051.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 838.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 216.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 559.85, + "success": true + } + ] + }, + { + "sessionId": "c0a277a1-67b1-48a3-8437-ccdc9d63bc3f", + "createMs": 4612.58, + "connectMs": 616.08, + "taskMs": 14198.94, + "actionsCompleted": 10, + "actionsPerSecond": 0.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1507.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 659.86, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1362.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2131.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 6107.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1300.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 78.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 203.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 773.19, + "success": true + } + ] + }, + { + "sessionId": "4dedcb21-b9be-4dd5-ba35-e80ab28776c1", + "createMs": 3823.93, + "connectMs": 566.6, + "taskMs": 8887.23, + "actionsCompleted": 10, + "actionsPerSecond": 1.13, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1196.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 657.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 908.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2485.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 930.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1579.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 205.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 777.88, + "success": true + } + ] + }, + { + "sessionId": "e0e93132-4fce-46e5-a9f5-7f17bec44fab", + "createMs": 8595.04, + "connectMs": 613.51, + "taskMs": 9265.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1500.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 665.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 895.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3655.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 705.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 757.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 305.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 629.18, + "success": true + } + ] + }, + { + "sessionId": "13b706d5-f7f5-499f-8294-cedd098629e7", + "createMs": 8315.6, + "connectMs": 623.29, + "taskMs": 13732.47, + "actionsCompleted": 10, + "actionsPerSecond": 0.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1728.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 672.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 885.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3665.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1049.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4587.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 243.75, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 747.81, + "success": true + } + ] + }, + { + "sessionId": "a79a5b97-68cd-43db-9d61-6e3c51fc116f", + "createMs": 3710.67, + "connectMs": 627.48, + "taskMs": 9614.17, + "actionsCompleted": 10, + "actionsPerSecond": 1.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1332.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 676.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 874.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 88.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4117.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 763.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 883.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 230.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 572.56, + "success": true + } + ] + }, + { + "sessionId": "ba120e44-d1ec-4571-90fe-ca40a6205fba", + "createMs": 9206.47, + "connectMs": 565.34, + "taskMs": 7567.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1260.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 661.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 796.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2387.1, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 615.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 857.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 214.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 629.69, + "success": true + } + ] + }, + { + "sessionId": "ecf802d7-a911-4971-a198-702b196ccb6c", + "createMs": 4402.19, + "connectMs": 612.67, + "taskMs": 7927.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1433.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 658.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 832.24, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2458.64, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 737.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 863.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 219.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 575.2, + "success": true + } + ] + }, + { + "sessionId": "2e040263-f11a-4e1d-9bf0-4cbc6d2b28fe", + "createMs": 9145.44, + "connectMs": 607.66, + "taskMs": 7396.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1301.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 659.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 796.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2270.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 691.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 762.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 221.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 549.96, + "success": true + } + ] + }, + { + "sessionId": "f750a036-2e4f-4cce-a017-6f69eced9bd1", + "createMs": 3697.62, + "connectMs": 627.1, + "taskMs": 11064.01, + "actionsCompleted": 10, + "actionsPerSecond": 0.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1969.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1054.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1010.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 109.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3299.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1326.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 918.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 438.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 859.68, + "success": true + } + ] + }, + { + "sessionId": "08c824e4-ed65-46f3-a497-3089da65b814", + "createMs": 5038.81, + "connectMs": 601.74, + "taskMs": 9230.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1029.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 663.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 909.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4035.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 666.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 939.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 70.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 222.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 621.55, + "success": true + } + ] + }, + { + "sessionId": "64201a7b-986f-47e3-a089-9607f17eb24d", + "createMs": 5279.76, + "connectMs": 616.29, + "taskMs": 9892.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1507.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 670.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1013.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2582.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2007, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1106.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 102.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 227.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 602.13, + "success": true + } + ] + }, + { + "sessionId": "3a96227a-22c3-4cba-b4a2-0c97249dba49", + "createMs": 8624.67, + "connectMs": 601.21, + "taskMs": 6938.81, + "actionsCompleted": 10, + "actionsPerSecond": 1.44, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1042.25, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 668.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 715.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2042.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 713.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 870.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 197.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 542.75, + "success": true + } + ] + }, + { + "sessionId": "ff1e6af8-169a-4256-9da7-fbb3faf8d006", + "createMs": 8951.54, + "connectMs": 594.45, + "taskMs": 8073.65, + "actionsCompleted": 10, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1143.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 675.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 822.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2989.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 602.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 852.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.18, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 268.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 574.36, + "success": true + } + ] + }, + { + "sessionId": "a296b702-e182-4715-b77a-fbe175005b57", + "createMs": 5172.35, + "connectMs": 671.02, + "taskMs": 7689.14, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1327.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 678.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 823.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 110.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2303.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 691.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 835.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 79.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 234.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 603.88, + "success": true + } + ] + }, + { + "sessionId": "e7cfed45-42aa-4e42-a78a-d98710679cc7", + "createMs": 12122.1, + "connectMs": 626.49, + "taskMs": 9614.36, + "actionsCompleted": 10, + "actionsPerSecond": 1.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1329.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 674.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 885.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3344.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1404.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 976.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 208.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 639.11, + "success": true + } + ] + }, + { + "sessionId": "950a05b3-cf98-4d3f-bd5d-13d64b1742a9", + "createMs": 4596.38, + "connectMs": 594.27, + "taskMs": 8737, + "actionsCompleted": 10, + "actionsPerSecond": 1.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1496.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 643.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 808.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2918.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 923.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 988.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 215, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 597.21, + "success": true + } + ] + }, + { + "sessionId": "9692f0c3-0eda-4a6d-9b80-ff583a0090cf", + "createMs": 882.33, + "connectMs": 733.7, + "taskMs": 15769.33, + "actionsCompleted": 10, + "actionsPerSecond": 0.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1060.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 696.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 828.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 76.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 8925.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2180.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1048.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 80.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 205.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 667.4, + "success": true + } + ] + }, + { + "sessionId": "494d73c6-a0fd-48eb-b987-56823dbe52d5", + "createMs": 8950.3, + "connectMs": 621.66, + "taskMs": 11013.48, + "actionsCompleted": 10, + "actionsPerSecond": 0.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1472.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 674.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 825.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3876.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2178.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 906.03, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 78.73, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 272.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 653.8, + "success": true + } + ] + }, + { + "sessionId": "af11a709-23ba-45bc-91c4-ddc634583ca0", + "createMs": 9065.32, + "connectMs": 608.8, + "taskMs": 7372.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1132.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 687.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 797.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2081.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 985.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 768.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 206.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 566.31, + "success": true + } + ] + }, + { + "sessionId": "fd6e858c-70d5-4d5d-8a91-9eb7df4a5964", + "createMs": 8665.66, + "connectMs": 672.29, + "taskMs": 8691.78, + "actionsCompleted": 10, + "actionsPerSecond": 1.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1338.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 673.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 982.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2656.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 731.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1168.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 75.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 224, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 766.97, + "success": true + } + ] + }, + { + "sessionId": "15bbd3bd-99c4-44ac-a33b-dd9c9a874727", + "createMs": 12400.82, + "connectMs": 668.99, + "taskMs": 10148.04, + "actionsCompleted": 10, + "actionsPerSecond": 0.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1405.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 683.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 932.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3540.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1304.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1154.76, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 232.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 741.66, + "success": true + } + ] + }, + { + "sessionId": "3cf60c79-9a5e-4988-aad0-7a0414971552", + "createMs": 8856.75, + "connectMs": 657.28, + "taskMs": 10410.66, + "actionsCompleted": 10, + "actionsPerSecond": 0.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1724.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 640.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1656.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.07, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2700.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1179.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1257.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 262.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 845.1, + "success": true + } + ] + }, + { + "sessionId": "41b1effe-4c9c-47fe-891f-939efd44994e", + "createMs": 3753.08, + "connectMs": 610.05, + "taskMs": 9227.9, + "actionsCompleted": 10, + "actionsPerSecond": 1.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1462.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 640.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1196.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2838.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1080.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 950.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 226.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 686.35, + "success": true + } + ] + }, + { + "sessionId": "4a1eb6c8-bd7d-4ded-acbc-fe0f78d65944", + "createMs": 3624.19, + "connectMs": 604.93, + "taskMs": 10001.84, + "actionsCompleted": 10, + "actionsPerSecond": 1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1736.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 643.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 846.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4119.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 851.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 748.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 373.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 536.68, + "success": true + } + ] + }, + { + "sessionId": "1e8073d8-b3a5-44dd-8f33-12e9d8e9f06c", + "createMs": 8724.39, + "connectMs": 602.28, + "taskMs": 9307.55, + "actionsCompleted": 10, + "actionsPerSecond": 1.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1493.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 646.39, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 898.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3689.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 645.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 861.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 70.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 259.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 671.05, + "success": true + } + ] + }, + { + "sessionId": "729e48f5-967a-4d79-8559-bf62d775fe64", + "createMs": 5289.08, + "connectMs": 602.68, + "taskMs": 7465.83, + "actionsCompleted": 10, + "actionsPerSecond": 1.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1288.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 636.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 760.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2142.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 924.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 794.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 219.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 555.32, + "success": true + } + ] + }, + { + "sessionId": "afb6ca1a-8ab5-4114-b195-9b5fe48ee7fa", + "createMs": 5275.96, + "connectMs": 608.55, + "taskMs": 8482, + "actionsCompleted": 10, + "actionsPerSecond": 1.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1594.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 636.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 786.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2866.94, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 662.9, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 960.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 248.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 581.31, + "success": true + } + ] + }, + { + "sessionId": "233b97d1-9323-45f8-8eed-f7904cacea0a", + "createMs": 12264.63, + "connectMs": 606.21, + "taskMs": 11083.33, + "actionsCompleted": 10, + "actionsPerSecond": 0.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1442.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 642.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4160.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2579.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 614.9, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 739.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 211.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 548.22, + "success": true + } + ] + }, + { + "sessionId": "d4df1377-7c4b-4a3a-ad08-85dc0f5202de", + "createMs": 4959.25, + "connectMs": 735.06, + "taskMs": 16729.27, + "actionsCompleted": 10, + "actionsPerSecond": 0.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2107.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 685.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3333.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2185.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 5863.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1202.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 81.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 232.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 960.28, + "success": true + } + ] + }, + { + "sessionId": "e1c09a56-06f2-4a08-8a66-a625432e2527", + "createMs": 3625.86, + "connectMs": 617.56, + "taskMs": 10698.5, + "actionsCompleted": 10, + "actionsPerSecond": 0.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1467.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 680.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1074.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2651.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2362.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1349.38, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 192.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 770.25, + "success": true + } + ] + }, + { + "sessionId": "934b33b4-104c-4eaa-a8f1-ed6bffbda859", + "createMs": 8356.41, + "connectMs": 732.8, + "taskMs": 10004.59, + "actionsCompleted": 10, + "actionsPerSecond": 1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1438.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 662.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 818.34, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4198.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1136.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 826.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 76.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 228.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 543.41, + "success": true + } + ] + }, + { + "sessionId": "d2214f83-e192-40c8-8484-167d4afcbf0b", + "createMs": 3645.05, + "connectMs": 608.21, + "taskMs": 10015.17, + "actionsCompleted": 10, + "actionsPerSecond": 1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1426.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 651.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 927.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 72.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4317.65, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 777.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 851.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 230.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 687.86, + "success": true + } + ] + }, + { + "sessionId": "6378e034-dba7-44b2-a1e8-7533525ceccc", + "createMs": 4592.36, + "connectMs": 610.04, + "taskMs": 8461.95, + "actionsCompleted": 10, + "actionsPerSecond": 1.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1511.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 644.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 787.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 73.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2989.84, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 823.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 789.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.61, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 241.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 528.37, + "success": true + } + ] + }, + { + "sessionId": "eea9e016-8e75-4dfb-a8e9-a80a423f3991", + "createMs": 4079.45, + "connectMs": 607.06, + "taskMs": 9971.74, + "actionsCompleted": 10, + "actionsPerSecond": 1, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1446.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 636.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 802.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4229.61, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1029.23, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 885.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 221.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 572.63, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 12415.24, + "p95": 12415.24, + "p99": 12415.24, + "samples": 1 + }, + "connectMs": { + "median": 744.54, + "p95": 744.54, + "p99": 744.54, + "samples": 1 + }, + "taskMs": { + "median": 16734.33, + "p95": 16734.33, + "p99": 16734.33, + "samples": 1 + }, + "loopMs": { + "median": 9229.45, + "p95": 13007.37, + "p99": 14198.94, + "samples": 50 + }, + "actionsPerSecond": { + "median": 29.88, + "p95": 29.88, + "p99": 29.88, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.08, + "p95": 1.35, + "p99": 1.38, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 1378.26, + "p95": 1728.6, + "p99": 1930.05, + "samples": 50 + }, + "waitForSelector": { + "median": 676.75, + "p95": 1179.81, + "p99": 1739.9, + "samples": 150 + }, + "screenshot": { + "median": 875.41, + "p95": 1300.99, + "p99": 1579.9, + "samples": 100 + }, + "textContent": { + "median": 73.92, + "p95": 83.16, + "p99": 91.08, + "samples": 100 + }, + "click": { + "median": 2831.21, + "p95": 4198.01, + "p99": 4317.65, + "samples": 50 + }, + "goBack": { + "median": 227.2, + "p95": 301.77, + "p99": 373.16, + "samples": 50 + } + } + }, + "compositeScore": 61.86, + "successRate": 1, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 10, + "createMs": 1287.71, + "connectMs": 1170.09, + "taskMs": 3443.42, + "releaseMs": 42.83, + "totalMs": 5963.03, + "aggregateActionsPerSecond": 29.04, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "pesi4exu0fm3uwdhuaif6lra", + "createMs": 204.85, + "connectMs": 77.5, + "taskMs": 1602.63, + "actionsCompleted": 10, + "actionsPerSecond": 6.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 280.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 213.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 291.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 312.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 281.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 25.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 42.52, + "success": true + } + ] + }, + { + "sessionId": "io7mynwmrn375lnj2v6ko3kk", + "createMs": 175.62, + "connectMs": 92.64, + "taskMs": 2220.27, + "actionsCompleted": 10, + "actionsPerSecond": 4.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 562.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 307.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 239.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 420.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 189.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 68.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 63.21, + "success": true + } + ] + }, + { + "sessionId": "a1n38m15887urwcc1rkgaaat", + "createMs": 193.32, + "connectMs": 102.99, + "taskMs": 1985.95, + "actionsCompleted": 10, + "actionsPerSecond": 5.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 423.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.34, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 230.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 473.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 29.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 57.89, + "success": true + } + ] + }, + { + "sessionId": "yvl87s6sgqeaybuwzobd1xy2", + "createMs": 189.41, + "connectMs": 82.97, + "taskMs": 1809.54, + "actionsCompleted": 10, + "actionsPerSecond": 5.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 306.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.03, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 219.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 184.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 473.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 366.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 65.66, + "success": true + } + ] + }, + { + "sessionId": "y3wfo6dbqg4v9eq1eihzhwy7", + "createMs": 207.68, + "connectMs": 85.53, + "taskMs": 1535.64, + "actionsCompleted": 10, + "actionsPerSecond": 6.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 310.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 159, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 252.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 3.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 245.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 180.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 285.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.08, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 44.6, + "success": true + } + ] + }, + { + "sessionId": "ckrhapw8bthicdmc2dc3nu4e", + "createMs": 230.92, + "connectMs": 131.48, + "taskMs": 3442.32, + "actionsCompleted": 10, + "actionsPerSecond": 2.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 393.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 606.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 823.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 684.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 127.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 99.36, + "success": true + } + ] + }, + { + "sessionId": "yb6el6rgnmyb39u2qi7obe6r", + "createMs": 261.01, + "connectMs": 1169.23, + "taskMs": 2057.68, + "actionsCompleted": 10, + "actionsPerSecond": 4.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 464.95, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 200.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 237.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 466.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 242.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 279.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 94.82, + "success": true + } + ] + }, + { + "sessionId": "uit3bza1r52gay603g7olsf6", + "createMs": 252, + "connectMs": 120.09, + "taskMs": 1906.56, + "actionsCompleted": 10, + "actionsPerSecond": 5.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 317.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 349.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 185.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 219.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 343.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 335.55, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 76.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 68.04, + "success": true + } + ] + }, + { + "sessionId": "lcya3dq9bo1h7cafks2omqr8", + "createMs": 243.65, + "connectMs": 161.78, + "taskMs": 1943.17, + "actionsCompleted": 10, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 257.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.64, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 380.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 460.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 287.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.76, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 85.18, + "success": true + } + ] + }, + { + "sessionId": "mjclwvq6ic90gd3yfgg9hqjn", + "createMs": 211.14, + "connectMs": 394.39, + "taskMs": 1731.12, + "actionsCompleted": 10, + "actionsPerSecond": 5.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 246.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 155.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 190.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 31.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 91.67, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 1287.71, + "p95": 1287.71, + "p99": 1287.71, + "samples": 1 + }, + "connectMs": { + "median": 1170.09, + "p95": 1170.09, + "p99": 1170.09, + "samples": 1 + }, + "taskMs": { + "median": 3443.42, + "p95": 3443.42, + "p99": 3443.42, + "samples": 1 + }, + "loopMs": { + "median": 1924.86, + "p95": 3442.32, + "p99": 3442.32, + "samples": 10 + }, + "actionsPerSecond": { + "median": 29.04, + "p95": 29.04, + "p99": 29.04, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.2, + "p95": 6.51, + "p99": 6.51, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 314.07, + "p95": 567.49, + "p99": 567.49, + "samples": 10 + }, + "waitForSelector": { + "median": 161.6, + "p95": 473.19, + "p99": 473.49, + "samples": 30 + }, + "screenshot": { + "median": 280.37, + "p95": 398.56, + "p99": 398.56, + "samples": 20 + }, + "textContent": { + "median": 7.39, + "p95": 12.5, + "p99": 12.5, + "samples": 20 + }, + "click": { + "median": 304.76, + "p95": 606.29, + "p99": 606.29, + "samples": 10 + }, + "goBack": { + "median": 49.96, + "p95": 127.83, + "p99": 127.83, + "samples": 10 + } + } + }, + "compositeScore": 18.18, + "successRate": 0.2, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Rate limit exceeded. Please retry later." + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 6, + "createMs": 1088.52, + "connectMs": 1552.37, + "taskMs": 34068.65, + "releaseMs": 908.17, + "totalMs": 39269.99, + "aggregateActionsPerSecond": 1.76, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "2d26fa18-ccee-438c-8e27-99ea9ee0aad7", + "createMs": 718.63, + "connectMs": 604.53, + "taskMs": 12210.43, + "actionsCompleted": 10, + "actionsPerSecond": 0.82, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1453.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 756.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1620.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 101.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4265.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1160.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1703.66, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 100.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 308.67, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 739.91, + "success": true + } + ] + }, + { + "sessionId": "95c96517-8f4f-49a2-aa69-1cba116dd888", + "createMs": 653.74, + "connectMs": 1134.98, + "taskMs": 30203.84, + "actionsCompleted": 10, + "actionsPerSecond": 0.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2908.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3399.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 3262.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 216.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 11292.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1988.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3994.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 216.99, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 823.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2100.62, + "success": true + } + ] + }, + { + "sessionId": "006cfe4e-d3bd-455b-8262-7f47f03f7f6d", + "createMs": 317.08, + "connectMs": 968.43, + "taskMs": 14843.55, + "actionsCompleted": 10, + "actionsPerSecond": 0.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1075.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 2994.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2823.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 92.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3690.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1084.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1597.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 157.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 407.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 921.03, + "success": true + } + ] + }, + { + "sessionId": "93a633c9-cdf5-4d6d-8531-66747a7d86ca", + "createMs": 366.38, + "connectMs": 941.05, + "taskMs": 15315.88, + "actionsCompleted": 10, + "actionsPerSecond": 0.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 791.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1986.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4218.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 81.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3023.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1198.51, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1511.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 88.64, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 323.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2091.67, + "success": true + } + ] + }, + { + "sessionId": "973a11df-c564-4bbf-86f0-12086fd5f4d9", + "createMs": 748.58, + "connectMs": 696.26, + "taskMs": 11949.02, + "actionsCompleted": 10, + "actionsPerSecond": 0.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1543.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 940.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1676.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 106.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3770.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 889.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1621.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 167.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 456.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 775.17, + "success": true + } + ] + }, + { + "sessionId": "1717e6f9-99cb-4760-9a86-5a79b27c5d75", + "createMs": 721.74, + "connectMs": 1551.37, + "taskMs": 34067.13, + "actionsCompleted": 10, + "actionsPerSecond": 0.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2150.64, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3158.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4229.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 208.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13086.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2653.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4493.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 229.42, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 908.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 2949.55, + "success": true + } + ] + } + ], + "maxLiveSessions": 6, + "maxConcurrentActions": 6, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 6, + "p95": 6, + "p99": 6, + "samples": 1 + }, + "createMs": { + "median": 1088.52, + "p95": 1088.52, + "p99": 1088.52, + "samples": 1 + }, + "connectMs": { + "median": 1552.37, + "p95": 1552.37, + "p99": 1552.37, + "samples": 1 + }, + "taskMs": { + "median": 34068.65, + "p95": 34068.65, + "p99": 34068.65, + "samples": 1 + }, + "loopMs": { + "median": 15079.72, + "p95": 34067.13, + "p99": 34067.13, + "samples": 6 + }, + "actionsPerSecond": { + "median": 1.76, + "p95": 1.76, + "p99": 1.76, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.66, + "p95": 0.84, + "p99": 0.84, + "samples": 6 + }, + "perActionType": { + "navigate": { + "median": 1498.63, + "p95": 2908.61, + "p99": 2908.61, + "samples": 6 + }, + "waitForSelector": { + "median": 1592.68, + "p95": 3399.95, + "p99": 3399.95, + "samples": 18 + }, + "screenshot": { + "median": 2263.74, + "p95": 4493.15, + "p99": 4493.15, + "samples": 12 + }, + "textContent": { + "median": 132.2, + "p95": 229.42, + "p99": 229.42, + "samples": 12 + }, + "click": { + "median": 4017.86, + "p95": 13086.12, + "p99": 13086.12, + "samples": 6 + }, + "goBack": { + "median": 432.05, + "p95": 908.44, + "p99": 908.44, + "samples": 6 + } + } + }, + "compositeScore": 7.9, + "successRate": 0.12, + "sessionCeiling": 6, + "concurrencyAchieved": 6, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 5, + "createMs": 11290.2, + "connectMs": 1590.79, + "taskMs": 11404.37, + "releaseMs": 861.76, + "totalMs": 27159.13, + "aggregateActionsPerSecond": 4.38, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "0df7f44b-99cd-49c7-9d5c-62b00082626b", + "createMs": 766.86, + "connectMs": 584.96, + "taskMs": 11355.33, + "actionsCompleted": 10, + "actionsPerSecond": 0.88, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 502.53, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 712.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 779.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6842.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 683.23, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 892.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 77.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 167.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 619.5, + "success": true + } + ] + }, + { + "sessionId": "c8738d39-01a3-48d7-8672-58ee25fdc10e", + "createMs": 786.35, + "connectMs": 1590.03, + "taskMs": 11402.82, + "actionsCompleted": 10, + "actionsPerSecond": 0.88, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 573.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 670.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1002.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.24, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 6716.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 678.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 838.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 78.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 192.66, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 578.17, + "success": true + } + ] + }, + { + "sessionId": "f1eafcf7-4096-426a-97a2-3d4213fd6dca", + "createMs": 720.43, + "connectMs": 449.74, + "taskMs": 9500.15, + "actionsCompleted": 10, + "actionsPerSecond": 1.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 758.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 514.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 837.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 50.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1354.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4627.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 761.2, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 416.28, + "success": true + } + ] + }, + { + "sessionId": "e93612fe-bb17-4506-8bba-bf24abaa28a5", + "createMs": 815.23, + "connectMs": 1449.9, + "taskMs": 8396.24, + "actionsCompleted": 10, + "actionsPerSecond": 1.19, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 516.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 535.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 646.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4815.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 524.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 674.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 446.14, + "success": true + } + ] + }, + { + "sessionId": "f98eddef-42a3-4436-aeec-7ffbbb0b4bab", + "createMs": 854.81, + "connectMs": 541.23, + "taskMs": 6467.16, + "actionsCompleted": 10, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 426.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 673.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 784.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2388.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 563.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 771.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 81.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 161.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 544.92, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 11290.2, + "p95": 11290.2, + "p99": 11290.2, + "samples": 1 + }, + "connectMs": { + "median": 1590.79, + "p95": 1590.79, + "p99": 1590.79, + "samples": 1 + }, + "taskMs": { + "median": 11404.37, + "p95": 11404.37, + "p99": 11404.37, + "samples": 1 + }, + "loopMs": { + "median": 9500.15, + "p95": 11402.82, + "p99": 11402.82, + "samples": 5 + }, + "actionsPerSecond": { + "median": 4.38, + "p95": 4.38, + "p99": 4.38, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.05, + "p95": 1.55, + "p99": 1.55, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 516.87, + "p95": 758.46, + "p99": 758.46, + "samples": 5 + }, + "waitForSelector": { + "median": 578.17, + "p95": 4627.01, + "p99": 4627.01, + "samples": 15 + }, + "screenshot": { + "median": 781.84, + "p95": 1002.15, + "p99": 1002.15, + "samples": 10 + }, + "textContent": { + "median": 73.44, + "p95": 81.14, + "p99": 81.14, + "samples": 10 + }, + "click": { + "median": 4815.04, + "p95": 6842.68, + "p99": 6842.68, + "samples": 5 + }, + "goBack": { + "median": 161.42, + "p95": 192.66, + "p99": 192.66, + "samples": 5 + } + } + }, + "compositeScore": 6.51, + "successRate": 0.1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 48, + "createMs": 1802.03, + "connectMs": 563.62, + "taskMs": 9021.74, + "releaseMs": 486.02, + "totalMs": 11933.86, + "aggregateActionsPerSecond": 53.2, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "fetch failed" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "fetch failed" + }, + { + "sessionId": "sess_a5b48298fee14b219879248c9aac2acc", + "createMs": 658.21, + "connectMs": 146.46, + "taskMs": 5772.79, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 230.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 309.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 354.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3191.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 741.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 446.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 34.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 328.04, + "success": true + } + ] + }, + { + "sessionId": "sess_8a8a64e00b9d45aa9c048f087d15aeab", + "createMs": 920.56, + "connectMs": 371.6, + "taskMs": 6428.6, + "actionsCompleted": 10, + "actionsPerSecond": 1.56, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 422.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 442.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3710.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 512.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 366.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 134.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 258.95, + "success": true + } + ] + }, + { + "sessionId": "sess_fcdf8d0c0f174233bc57c11767c4e61e", + "createMs": 1278.65, + "connectMs": 160.67, + "taskMs": 5418.38, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 214.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 322.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 351.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1572.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1239.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1240.8, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 91.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 281.42, + "success": true + } + ] + }, + { + "sessionId": "sess_7e31be4ba4ac45048d0d749f247b96ad", + "createMs": 1744.68, + "connectMs": 171.72, + "taskMs": 5430.5, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 267.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 296.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 424.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1529.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1196.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1314.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.69, + "success": true + } + ] + }, + { + "sessionId": "sess_df2f2cad2d5e492ead5b02f035564763", + "createMs": 1400.16, + "connectMs": 350.26, + "taskMs": 5400.47, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 326.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 323.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 301.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1851, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1288.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 894.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 39.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 88.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 263.99, + "success": true + } + ] + }, + { + "sessionId": "sess_00ca780e22504694aa75a06d4587374a", + "createMs": 1485.3, + "connectMs": 346.41, + "taskMs": 6381.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 324.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 433.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 329.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2999.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1547.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 223.49, + "success": true + } + ] + }, + { + "sessionId": "sess_b65086caa9ae44a982b999c5e7a53492", + "createMs": 847.75, + "connectMs": 160.29, + "taskMs": 5703.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 405.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 395.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 400.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2736.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 905.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 376.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 113.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 273.29, + "success": true + } + ] + }, + { + "sessionId": "sess_4365ee4db5ff4ec7abae554d1b6dc753", + "createMs": 1349.34, + "connectMs": 145.44, + "taskMs": 5581.19, + "actionsCompleted": 10, + "actionsPerSecond": 1.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 299.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 380.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1889.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1555.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 611.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 186.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 317.53, + "success": true + } + ] + }, + { + "sessionId": "sess_49b7476ae50645d884d023e03ed1b18b", + "createMs": 1716.03, + "connectMs": 145.91, + "taskMs": 5631, + "actionsCompleted": 10, + "actionsPerSecond": 1.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 202.3, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 271.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 477.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2051.27, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1621.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 50.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 138.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 305.07, + "success": true + } + ] + }, + { + "sessionId": "sess_cead49ae364d41f3a780d551f70fdfa1", + "createMs": 1475.44, + "connectMs": 168.1, + "taskMs": 5074.51, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 172.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 238.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 346.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1226.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 720.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1190.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 240.6, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 541.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 371.91, + "success": true + } + ] + }, + { + "sessionId": "sess_717d4bcbf8e341779774f03208e327f4", + "createMs": 1799.29, + "connectMs": 145.92, + "taskMs": 5418, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 451.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 300.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 285.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2155.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1405.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 243.63, + "success": true + } + ] + }, + { + "sessionId": "sess_1976823349c44373a470e18915bcd7d0", + "createMs": 1603.79, + "connectMs": 161.5, + "taskMs": 5343.68, + "actionsCompleted": 10, + "actionsPerSecond": 1.87, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 385.18, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 328.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1805.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1315.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 839.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 38.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 83.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.9, + "success": true + } + ] + }, + { + "sessionId": "sess_f9eaa2c69a6147169b478cb4ae6b38a2", + "createMs": 659.65, + "connectMs": 354.59, + "taskMs": 6140.09, + "actionsCompleted": 10, + "actionsPerSecond": 1.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 397.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 419.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 435.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 80.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3508.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 492.78, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 412.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 123.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 232.55, + "success": true + } + ] + }, + { + "sessionId": "sess_2b0301efbd48447baeadd15e730478a2", + "createMs": 784.12, + "connectMs": 405.68, + "taskMs": 9018.98, + "actionsCompleted": 10, + "actionsPerSecond": 1.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1363.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 941.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 2031.67, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 288.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1843.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 706.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 655.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 210.61, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 505.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 471.85, + "success": true + } + ] + }, + { + "sessionId": "sess_1d4e37f4c97840269cfe46d99533d9f6", + "createMs": 721.96, + "connectMs": 361.43, + "taskMs": 8945.46, + "actionsCompleted": 10, + "actionsPerSecond": 1.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 379.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 429.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 392.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3482.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1685.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1899.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 98.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.53, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 402.7, + "success": true + } + ] + }, + { + "sessionId": "sess_66c6d766800a4915806d728326246114", + "createMs": 888.28, + "connectMs": 148.57, + "taskMs": 5899.17, + "actionsCompleted": 10, + "actionsPerSecond": 1.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 286.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 491.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3280.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 520.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 404.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 91.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 102.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 245.84, + "success": true + } + ] + }, + { + "sessionId": "sess_cbf2495a3dec4906bc702343a5133b39", + "createMs": 837.04, + "connectMs": 185.29, + "taskMs": 5712.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 328.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 358.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 298.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1546.47, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1989.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 556.34, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 47.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 282.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 294.4, + "success": true + } + ] + }, + { + "sessionId": "sess_0d44744562bd41b5b205aa4988e3ac70", + "createMs": 1712.54, + "connectMs": 188.32, + "taskMs": 5848.68, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 585.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 287.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 380.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 79.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2208.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1509.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 349.3, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 49.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 170.03, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 229.17, + "success": true + } + ] + }, + { + "sessionId": "sess_97d8f407292f4c6c8c9814de74f55414", + "createMs": 1631.46, + "connectMs": 147.97, + "taskMs": 5699.92, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 372.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 387.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 341.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 71.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2541.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1038.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 445.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 174.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 271.15, + "success": true + } + ] + }, + { + "sessionId": "sess_f9d038c924974802bc4d6f3552e0f97c", + "createMs": 1308.22, + "connectMs": 193.75, + "taskMs": 5694.91, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 229.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 337.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3253.7, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 634.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 343.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 34.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 247.78, + "success": true + } + ] + }, + { + "sessionId": "sess_fa9cb4e7802c4991a4bac293464a8e05", + "createMs": 1267.78, + "connectMs": 185.96, + "taskMs": 6166.91, + "actionsCompleted": 10, + "actionsPerSecond": 1.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 381.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 291.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 315.02, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4178.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 451.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 336.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.18, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.18, + "success": true + } + ] + }, + { + "sessionId": "sess_6dc12fd3f0de4f36aa908770f2938ea1", + "createMs": 1644.82, + "connectMs": 183.1, + "taskMs": 5746.01, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 256.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 309.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 456.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3289.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 634.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 342.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 131.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 274.65, + "success": true + } + ] + }, + { + "sessionId": "sess_f4f700156c6c4ef180e18433c398cc60", + "createMs": 1521.54, + "connectMs": 367.69, + "taskMs": 5769.38, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 285.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 373.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 299.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2943.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 867.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.34, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 201.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 234.08, + "success": true + } + ] + }, + { + "sessionId": "sess_dfbbd0cee9be4366b306ca6a360c7b2d", + "createMs": 1631.57, + "connectMs": 145.68, + "taskMs": 5557.36, + "actionsCompleted": 10, + "actionsPerSecond": 1.8, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 317.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 358.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 288.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1550.32, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1270.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1206.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 38.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 127.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 382.98, + "success": true + } + ] + }, + { + "sessionId": "sess_1e31f6399aca4b89a6550ee30ae3b313", + "createMs": 1763.63, + "connectMs": 368.68, + "taskMs": 7389.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.85, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 698.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1458.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 67.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2977.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 766.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 305.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.19, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 185.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.32, + "success": true + } + ] + }, + { + "sessionId": "sess_d7dce98552f1429282f0cc70c6f00578", + "createMs": 994.54, + "connectMs": 159.06, + "taskMs": 6724.01, + "actionsCompleted": 10, + "actionsPerSecond": 1.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 414.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 372.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 638.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4283.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 318.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 397.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.19, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 159.77, + "success": true + } + ] + }, + { + "sessionId": "sess_0d099cbde7f3424f8ab47a0100fe7491", + "createMs": 614.74, + "connectMs": 195.86, + "taskMs": 6141.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 610.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 279.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 424.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3219.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 848.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 370.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 187.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 118.81, + "success": true + } + ] + }, + { + "sessionId": "sess_6885daf277b64f53a8781544616ea59e", + "createMs": 1696.28, + "connectMs": 148.55, + "taskMs": 5615.21, + "actionsCompleted": 10, + "actionsPerSecond": 1.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 262.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 288.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 359.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 33.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1764.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1396.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 936.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 440.84, + "success": true + } + ] + }, + { + "sessionId": "sess_dbcee11054c444e0b582799142825980", + "createMs": 1234.56, + "connectMs": 142.43, + "taskMs": 5191.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 256.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 363.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 328.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1518.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1191.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1073.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.27, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 200.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 220.84, + "success": true + } + ] + }, + { + "sessionId": "sess_3a662582c93f406da715846f80a96049", + "createMs": 1043.85, + "connectMs": 174.2, + "taskMs": 5678.71, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 348.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 501.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 326.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 82.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2136.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1270.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 504.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 226.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 240.83, + "success": true + } + ] + }, + { + "sessionId": "sess_b41d48a7bda64972b7c2bdf3edaeaa6e", + "createMs": 1100.44, + "connectMs": 193.66, + "taskMs": 5674.95, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 233.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 297.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2629.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1258.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 454.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 148.39, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.79, + "success": true + } + ] + }, + { + "sessionId": "sess_e8726c496b834603b0853e747d356bff", + "createMs": 1546.39, + "connectMs": 175.45, + "taskMs": 5417.3, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 292.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 359.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 293.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1587.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1246.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1177.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 72, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 91.03, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 281.74, + "success": true + } + ] + }, + { + "sessionId": "sess_a56fdd46e7264ac59f5ac7e47484cfe3", + "createMs": 1740.75, + "connectMs": 167.75, + "taskMs": 6835.2, + "actionsCompleted": 10, + "actionsPerSecond": 1.46, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 417.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 524.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 322.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3847.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1075.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 328.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.23, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.9, + "success": true + } + ] + }, + { + "sessionId": "sess_234826403d0540478da4f42f58d8f534", + "createMs": 1100.26, + "connectMs": 356.61, + "taskMs": 6267.48, + "actionsCompleted": 10, + "actionsPerSecond": 1.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 448.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 364.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 358.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 79.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2862.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1455.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 199.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.53, + "success": true + } + ] + }, + { + "sessionId": "sess_f240f88f310a4158a0e7986fed4b0931", + "createMs": 1398.97, + "connectMs": 159.57, + "taskMs": 5760.22, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 342.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 378.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 333.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2400.89, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1200.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 483.76, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.59, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 189.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 360.53, + "success": true + } + ] + }, + { + "sessionId": "sess_d1b572de292c40d0bab87aa8cb61fbf1", + "createMs": 1154.41, + "connectMs": 142.5, + "taskMs": 5428.76, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 379.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2237.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1362.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 402.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 99.49, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.8, + "success": true + } + ] + }, + { + "sessionId": "sess_8e7a9c608cac47e9b4cbe697005ebee4", + "createMs": 966.39, + "connectMs": 167.14, + "taskMs": 6122.37, + "actionsCompleted": 10, + "actionsPerSecond": 1.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 215.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 256.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 323.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3937.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 809.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.09, + "success": true + } + ] + }, + { + "sessionId": "sess_b1811f5f9ac142afab101d798d8b5939", + "createMs": 1043.23, + "connectMs": 361.54, + "taskMs": 5416.85, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 277.1, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 320.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1594.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1256.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1171.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 71.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 90.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 282.08, + "success": true + } + ] + }, + { + "sessionId": "sess_10082f19c53842d282366a66d3d4dc67", + "createMs": 1366.33, + "connectMs": 358.21, + "taskMs": 5693.92, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 330.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 625.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 401.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2597.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 841.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 33.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 112.64, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 256.95, + "success": true + } + ] + }, + { + "sessionId": "sess_a0b07dac11f34d24bf22876f6b7a4687", + "createMs": 1233.96, + "connectMs": 562.15, + "taskMs": 5678.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 329.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 435.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 305.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 53.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2554.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1080.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 447.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 60.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 161.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 249.25, + "success": true + } + ] + }, + { + "sessionId": "sess_03470db8b1264b1081fa38e41a3d0074", + "createMs": 1775.97, + "connectMs": 364, + "taskMs": 5671.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 274.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 334.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 350.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2645.36, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1113.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 455.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.72, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 146.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 272.76, + "success": true + } + ] + }, + { + "sessionId": "sess_85ae2af1fa4746aa8d59e5c68832c490", + "createMs": 761.96, + "connectMs": 430.79, + "taskMs": 7316.42, + "actionsCompleted": 10, + "actionsPerSecond": 1.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 846.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 749.8, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1112.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 83.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2981.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 596.52, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 346.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 314.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 256.25, + "success": true + } + ] + }, + { + "sessionId": "sess_06615a66bff0407894093d99805c8e8c", + "createMs": 812.91, + "connectMs": 366.41, + "taskMs": 6155.89, + "actionsCompleted": 10, + "actionsPerSecond": 1.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 343.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 359.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 351.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3905.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 585.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 286.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.28, + "success": true + } + ] + }, + { + "sessionId": "sess_f8839edfc15f4ac697338f537b10b3a3", + "createMs": 934.96, + "connectMs": 372.01, + "taskMs": 5840.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 483.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 338.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 429.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2951.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 693.9, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 365.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 61.47, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 182.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 259.95, + "success": true + } + ] + }, + { + "sessionId": "sess_e43207189117478b88314b858ec9f3fb", + "createMs": 1148.8, + "connectMs": 370.99, + "taskMs": 5591.13, + "actionsCompleted": 10, + "actionsPerSecond": 1.79, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 286.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 299.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 327.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1592.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1321.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1177.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 211.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 328.69, + "success": true + } + ] + }, + { + "sessionId": "sess_cbd3fc6d70344c7eac8d8cf4c7bca3f4", + "createMs": 1798.68, + "connectMs": 372.25, + "taskMs": 5668.93, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 530.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 283.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 310.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2283.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1523.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 278.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 74.55, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 270.62, + "success": true + } + ] + }, + { + "sessionId": "sess_85d9c402d47542468355328bf2e778cd", + "createMs": 1075.17, + "connectMs": 370.38, + "taskMs": 6276.94, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 248.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 286.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4021.43, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 641.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 527.49, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 117.71, + "success": true + } + ] + }, + { + "sessionId": "sess_be0290dbfb4e4b99905cc69ce250b25a", + "createMs": 1686.5, + "connectMs": 367.73, + "taskMs": 6460.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.55, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 502.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 301.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 446.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 74.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4106.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 573.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 235.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 76.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 136.75, + "success": true + } + ] + } + ], + "maxLiveSessions": 48, + "maxConcurrentActions": 48, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 48, + "p95": 48, + "p99": 48, + "samples": 1 + }, + "createMs": { + "median": 1802.03, + "p95": 1802.03, + "p99": 1802.03, + "samples": 1 + }, + "connectMs": { + "median": 563.62, + "p95": 563.62, + "p99": 563.62, + "samples": 1 + }, + "taskMs": { + "median": 9021.74, + "p95": 9021.74, + "p99": 9021.74, + "samples": 1 + }, + "loopMs": { + "median": 5707.74, + "p95": 6835.2, + "p99": 7389.12, + "samples": 48 + }, + "actionsPerSecond": { + "median": 53.2, + "p95": 53.2, + "p99": 53.2, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.75, + "p95": 1.85, + "p99": 1.87, + "samples": 48 + }, + "perActionType": { + "navigate": { + "median": 329.87, + "p95": 585.39, + "p99": 679.85, + "samples": 48 + }, + "waitForSelector": { + "median": 362.08, + "p95": 1288.14, + "p99": 1405.6, + "samples": 144 + }, + "screenshot": { + "median": 393.66, + "p95": 1177.05, + "p99": 1240.8, + "samples": 96 + }, + "textContent": { + "median": 34.44, + "p95": 79.77, + "p99": 91.94, + "samples": 96 + }, + "click": { + "median": 2613.27, + "p95": 3937.8, + "p99": 4106.39, + "samples": 48 + }, + "goBack": { + "median": 121.36, + "p95": 226.3, + "p99": 314.59, + "samples": 48 + } + } + }, + "compositeScore": 77.22, + "successRate": 0.96, + "sessionCeiling": 48, + "concurrencyAchieved": 48, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c50/2026-08-18.json b/results/browser-concurrent/c50/2026-08-18.json new file mode 100644 index 00000000..8b478524 --- /dev/null +++ b/results/browser-concurrent/c50/2026-08-18.json @@ -0,0 +1,17698 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.739Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 50, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 488.75, + "connectMs": 601.28, + "taskMs": 11726.74, + "releaseMs": 860.62, + "totalMs": 13698.77, + "aggregateActionsPerSecond": 42.13, + "sessions": [ + { + "sessionId": "ffede92e-2b37-48f9-abac-776e50d1306d", + "createMs": 437.92, + "connectMs": 365.7, + "taskMs": 2652, + "actionsCompleted": 10, + "actionsPerSecond": 3.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 826.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 345.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 553.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 318.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 274.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.63, + "success": true + } + ] + }, + { + "sessionId": "5dfebeb4-389b-402c-95a7-82ad1f9d331b", + "createMs": 441.44, + "connectMs": 248.59, + "taskMs": 2022.1, + "actionsCompleted": 10, + "actionsPerSecond": 4.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 653.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 83.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 235.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 317.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 277.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 238.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.06, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.52, + "success": true + } + ] + }, + { + "sessionId": "663b46ef-6204-481b-b3d1-d6e02990d276", + "createMs": 436.21, + "connectMs": 351.72, + "taskMs": 2702.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 760.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 99.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 506.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 474.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 271.03, + "success": true + } + ] + }, + { + "sessionId": "f4294d09-cbf3-417b-8762-f246aebf9225", + "createMs": 447.8, + "connectMs": 265.9, + "taskMs": 3174.34, + "actionsCompleted": 10, + "actionsPerSecond": 3.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 878.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 312.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 558.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 554.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 481.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.95, + "success": true + } + ] + }, + { + "sessionId": "b3aaaf30-e27c-494d-9bf9-3dc3166328a3", + "createMs": 429.89, + "connectMs": 245.24, + "taskMs": 2841.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 344.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 831.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 228.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 464.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.08, + "success": true + } + ] + }, + { + "sessionId": "a0b65d82-39fb-47cb-aa63-fe4a3bb00ab2", + "createMs": 435.85, + "connectMs": 260.46, + "taskMs": 2822.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1037.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 119.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 531.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 189.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 382.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 175.73, + "success": true + } + ] + }, + { + "sessionId": "3a452166-20fb-41af-946e-efb809766151", + "createMs": 461, + "connectMs": 386.45, + "taskMs": 2549.05, + "actionsCompleted": 10, + "actionsPerSecond": 3.92, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 944.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 512.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 197.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 261.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.94, + "success": true + } + ] + }, + { + "sessionId": "1b0e9d42-4872-4646-a928-496a3c12df2d", + "createMs": 487.24, + "connectMs": 297.45, + "taskMs": 2321.2, + "actionsCompleted": 10, + "actionsPerSecond": 4.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 720.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 389.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 238.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 259.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 293.68, + "success": true + } + ] + }, + { + "sessionId": "1ff95034-9829-42c0-9a3c-0aef521a4483", + "createMs": 440.36, + "connectMs": 280.96, + "taskMs": 3255.01, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 921.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 695.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 343.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 545.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 421.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 172.88, + "success": true + } + ] + }, + { + "sessionId": "ffefa486-46ba-499b-9368-d77a4607ba82", + "createMs": 462.8, + "connectMs": 273.5, + "taskMs": 2646.22, + "actionsCompleted": 10, + "actionsPerSecond": 3.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 543.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 429.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 267.59, + "success": true + } + ] + }, + { + "sessionId": "01cbd521-9464-44e0-9477-9f7fa811c834", + "createMs": 456.16, + "connectMs": 254.23, + "taskMs": 2217.08, + "actionsCompleted": 10, + "actionsPerSecond": 4.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 754.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 468.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 211.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 254.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.3, + "success": true + } + ] + }, + { + "sessionId": "2aa957d7-d956-4d4e-8f5d-d25b7c2018de", + "createMs": 480.27, + "connectMs": 417.42, + "taskMs": 2414.65, + "actionsCompleted": 10, + "actionsPerSecond": 4.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 698.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 239.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 539.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 243.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.23, + "success": true + } + ] + }, + { + "sessionId": "688a032b-12c3-434d-a4c3-73928a10c62c", + "createMs": 479.66, + "connectMs": 600.42, + "taskMs": 3014.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 554.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 679.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 260.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.13, + "success": true + } + ] + }, + { + "sessionId": "04b9350e-e428-4c77-9853-b890435e8ca4", + "createMs": 436.07, + "connectMs": 248.02, + "taskMs": 3617.64, + "actionsCompleted": 10, + "actionsPerSecond": 2.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1762.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 423.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 297.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 497.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 240.07, + "success": true + } + ] + }, + { + "sessionId": "0ff09a6e-2b05-4404-a2b1-4d0e66d69032", + "createMs": 456.19, + "connectMs": 362.41, + "taskMs": 2706.32, + "actionsCompleted": 10, + "actionsPerSecond": 3.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 862.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 307.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 485.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 327.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.56, + "success": true + } + ] + }, + { + "sessionId": "fcf86a6a-6581-4b5b-9c38-cdfe0554d42d", + "createMs": 441.96, + "connectMs": 252.37, + "taskMs": 3329.21, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 977.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 353.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 571.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 637, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 246.94, + "success": true + } + ] + }, + { + "sessionId": "e1be5d78-6ede-4f3d-b25b-07fdde0174c0", + "createMs": 448.43, + "connectMs": 260.51, + "taskMs": 2830.97, + "actionsCompleted": 10, + "actionsPerSecond": 3.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 921.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 602.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 240.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.05, + "success": true + } + ] + }, + { + "sessionId": "b6a1ce9d-6f41-4343-bfe8-45aa2ac8fbeb", + "createMs": 436.01, + "connectMs": 239.83, + "taskMs": 2933.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 979.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 373.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 464.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 457.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.46, + "success": true + } + ] + }, + { + "sessionId": "01eeff79-4636-4ff7-b437-00edf4ee5058", + "createMs": 435.83, + "connectMs": 249.11, + "taskMs": 2331.84, + "actionsCompleted": 10, + "actionsPerSecond": 4.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 680.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 244.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 374.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 349.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 341.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 202.44, + "success": true + } + ] + }, + { + "sessionId": "3bd5d38d-5018-4557-8406-5d582272449d", + "createMs": 436.01, + "connectMs": 236.68, + "taskMs": 3068.25, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 919.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 94.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 316.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 528.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.32, + "success": true + } + ] + }, + { + "sessionId": "090c1301-756a-491f-901a-09734fb7c069", + "createMs": 474.4, + "connectMs": 285.31, + "taskMs": 2961.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 974.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 107.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 290.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 272.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 626.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.6, + "success": true + } + ] + }, + { + "sessionId": "b20f9743-e8fe-4256-86ae-9dd71c55e3d8", + "createMs": 470.62, + "connectMs": 289, + "taskMs": 3123.72, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 623.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 328.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 394.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 677.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 367.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.02, + "success": true + } + ] + }, + { + "sessionId": "aaa5aa70-17fb-4166-aea8-9974fd568b0f", + "createMs": 435.76, + "connectMs": 236.32, + "taskMs": 2696, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 447.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 641.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 427.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 366.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.23, + "success": true + } + ] + }, + { + "sessionId": "cd611138-8e75-4c45-ba0e-c66fd2f21989", + "createMs": 435.85, + "connectMs": 234.68, + "taskMs": 11724.7, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 983.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 331.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10005.42, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "1efe86c6-32da-4a2a-8cad-3c63e95fac53", + "createMs": 456.18, + "connectMs": 261.58, + "taskMs": 3353.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1029.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 455.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 305.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 583.34, + "success": true + } + ] + }, + { + "sessionId": "82d05d95-7217-482e-990f-f221d469a381", + "createMs": 447.84, + "connectMs": 281.23, + "taskMs": 2799.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 981.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 341.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.73, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 480.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 247.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.72, + "success": true + } + ] + }, + { + "sessionId": "10659c71-58de-4ca8-afcb-366428d8564d", + "createMs": 456.72, + "connectMs": 265.2, + "taskMs": 2542.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 717.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 204.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 388.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 624.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 301.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.01, + "success": true + } + ] + }, + { + "sessionId": "d47031d8-4695-45d4-8d05-3309c113a67f", + "createMs": 435.82, + "connectMs": 234.78, + "taskMs": 3070.04, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1220.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 453.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 285.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 266.35, + "success": true + } + ] + }, + { + "sessionId": "40044bb2-d947-4ae7-b9ac-07defbcc94c7", + "createMs": 469.41, + "connectMs": 372.88, + "taskMs": 2925.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 774.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 569.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 458.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.71, + "success": true + } + ] + }, + { + "sessionId": "99ce7edf-7afb-4451-b3ca-bea1de7a450a", + "createMs": 436.39, + "connectMs": 251.33, + "taskMs": 2931.34, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 924.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 75.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 250.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 809.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 403.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.74, + "success": true + } + ] + }, + { + "sessionId": "e9c4724d-474e-4a54-815c-c4163a590fe1", + "createMs": 472.36, + "connectMs": 298.4, + "taskMs": 2758.87, + "actionsCompleted": 10, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 885.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 498.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 347.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 351.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 225.83, + "success": true + } + ] + }, + { + "sessionId": "118cc726-0626-4bf0-bc25-d59fc467f1e1", + "createMs": 456.19, + "connectMs": 258.01, + "taskMs": 3605.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1816.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 104.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 353.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 158.19, + "success": true + } + ] + }, + { + "sessionId": "4bb723e8-48e7-43fa-9907-6b505d458e18", + "createMs": 478.87, + "connectMs": 282.99, + "taskMs": 2413.83, + "actionsCompleted": 10, + "actionsPerSecond": 4.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 648.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 102.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 298.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 567.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 244.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 308.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.4, + "success": true + } + ] + }, + { + "sessionId": "a8c006ee-5598-4b26-9b63-233e8df9449d", + "createMs": 435.93, + "connectMs": 250.84, + "taskMs": 2730.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 855.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 546.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 400.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.49, + "success": true + } + ] + }, + { + "sessionId": "465ff2ce-f11e-4cb9-981d-7073c4c6f7a2", + "createMs": 437.35, + "connectMs": 265.7, + "taskMs": 2472.26, + "actionsCompleted": 10, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 507.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 393.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 223.06, + "success": true + } + ] + }, + { + "sessionId": "b9455676-bbd2-49ae-a84e-36a554179f21", + "createMs": 444.02, + "connectMs": 266.18, + "taskMs": 2862.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 81.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 285.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 483.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 689.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 327.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 247.26, + "success": true + } + ] + }, + { + "sessionId": "6e1aec6f-5c23-4a57-97fd-969548898367", + "createMs": 475.37, + "connectMs": 381.97, + "taskMs": 3274.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 948.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 267.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 478.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.63, + "success": true + } + ] + }, + { + "sessionId": "3c947b97-4eb2-463c-b0a9-4a1b21b549d3", + "createMs": 448.78, + "connectMs": 355.76, + "taskMs": 2623.1, + "actionsCompleted": 10, + "actionsPerSecond": 3.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 913.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 72.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 246.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 743.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 187.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 226.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.39, + "success": true + } + ] + }, + { + "sessionId": "900f036c-abe2-4e3e-8015-0e39d0caf4df", + "createMs": 470.8, + "connectMs": 283.28, + "taskMs": 2968.07, + "actionsCompleted": 10, + "actionsPerSecond": 3.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1105.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 363.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 445.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 341.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.53, + "success": true + } + ] + }, + { + "sessionId": "aa7fb543-4c29-4316-a5d3-c99f5bb98165", + "createMs": 447.7, + "connectMs": 280.43, + "taskMs": 3093.42, + "actionsCompleted": 10, + "actionsPerSecond": 3.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 923.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 304.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 452.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.71, + "success": true + } + ] + }, + { + "sessionId": "125760d1-f6fd-4d2d-a189-e9692a041484", + "createMs": 445.71, + "connectMs": 278.44, + "taskMs": 3351.8, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1069.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 459.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 648.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 396.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 326.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.08, + "success": true + } + ] + }, + { + "sessionId": "afc76d4d-c268-4e8c-887f-da7b47a3ac41", + "createMs": 474.96, + "connectMs": 299.71, + "taskMs": 2743.31, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 244.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 543.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 351.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.41, + "success": true + } + ] + }, + { + "sessionId": "a53b950c-389a-41a5-b9c7-342b97bce53f", + "createMs": 448.38, + "connectMs": 272.95, + "taskMs": 3336.23, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 911.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 635.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 818.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 237.32, + "success": true + } + ] + }, + { + "sessionId": "195a2f4a-022a-4f76-8f26-66c9c78260e2", + "createMs": 444.67, + "connectMs": 251.47, + "taskMs": 2679.84, + "actionsCompleted": 10, + "actionsPerSecond": 3.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 650.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 73.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 270.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 390.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 593.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 361.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 226.42, + "success": true + } + ] + }, + { + "sessionId": "e146aab6-2afb-467a-82b0-10fdcdb9c5f3", + "createMs": 456.24, + "connectMs": 259.45, + "taskMs": 2823.19, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 836.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 632.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 389.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 319.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 205.93, + "success": true + } + ] + }, + { + "sessionId": "ed82d671-9565-469d-a801-422c2d9d7464", + "createMs": 435.95, + "connectMs": 465.8, + "taskMs": 3528.7, + "actionsCompleted": 10, + "actionsPerSecond": 2.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1589.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 355.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 575.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.84, + "success": true + } + ] + }, + { + "sessionId": "347d3e5e-fa41-4fdc-bc8b-e897564b60f5", + "createMs": 456.12, + "connectMs": 282.23, + "taskMs": 2785.43, + "actionsCompleted": 10, + "actionsPerSecond": 3.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 952.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 113.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 662.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 220.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.31, + "success": true + } + ] + }, + { + "sessionId": "55d48f3a-6087-4234-96f9-e4c2032dcc14", + "createMs": 445.18, + "connectMs": 278.45, + "taskMs": 3002.75, + "actionsCompleted": 10, + "actionsPerSecond": 3.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1101.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 135.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 526.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 206.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.95, + "success": true + } + ] + }, + { + "sessionId": "2fdd6741-5a9a-44bc-9bc6-3a1d31692de3", + "createMs": 478.01, + "connectMs": 295.35, + "taskMs": 3447.65, + "actionsCompleted": 10, + "actionsPerSecond": 2.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1634.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 299.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.29, + "success": true + } + ] + }, + { + "sessionId": "12d9faeb-6f4a-451e-a07a-f7df711bed7f", + "createMs": 460.14, + "connectMs": 278.15, + "taskMs": 3219.97, + "actionsCompleted": 10, + "actionsPerSecond": 3.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1616.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 240.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 465.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 232.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.06, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 488.75, + "p95": 488.75, + "p99": 488.75, + "samples": 1 + }, + "connectMs": { + "median": 601.28, + "p95": 601.28, + "p99": 601.28, + "samples": 1 + }, + "taskMs": { + "median": 3617.64, + "p95": 3617.64, + "p99": 3617.64, + "samples": 1 + }, + "loopMs": { + "median": 2841.94, + "p95": 3353.97, + "p99": 3528.7, + "samples": 49 + }, + "actionsPerSecond": { + "median": 42.13, + "p95": 42.13, + "p99": 42.13, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.51, + "p95": 4.14, + "p99": 4.31, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 912.66, + "p95": 1589.03, + "p99": 1634.75, + "samples": 50 + }, + "waitForSelector": { + "median": 200.11, + "p95": 465.45, + "p99": 545.73, + "samples": 148 + }, + "screenshot": { + "median": 308.6, + "p95": 478.08, + "p99": 554.87, + "samples": 99 + }, + "textContent": { + "median": 8.67, + "p95": 24.14, + "p99": 27.8, + "samples": 99 + }, + "click": { + "median": 506.4, + "p95": 677.53, + "p99": 743.72, + "samples": 49 + }, + "goBack": { + "median": 42.17, + "p95": 65.74, + "p99": 69.4, + "samples": 49 + } + } + }, + "compositeScore": 86.5, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 587.13, + "connectMs": 1018.61, + "taskMs": 11147.96, + "releaseMs": 147.91, + "totalMs": 12968.5, + "aggregateActionsPerSecond": 44.31, + "sessions": [ + { + "sessionId": "ad43bee3-5549-44d1-80ea-8f8b2e2a4604", + "createMs": 337.23, + "connectMs": 137.05, + "taskMs": 3601.68, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 658.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 233.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1590.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 299.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 217.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.05, + "success": true + } + ] + }, + { + "sessionId": "20a842fd-06d7-4a73-8f82-c31c4669981d", + "createMs": 307.03, + "connectMs": 151.09, + "taskMs": 3526.61, + "actionsCompleted": 10, + "actionsPerSecond": 2.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 240.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 308.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1491.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 279.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 284.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.1, + "success": true + } + ] + }, + { + "sessionId": "948176b7-8568-4069-8aa3-79d96e838d2f", + "createMs": 326.57, + "connectMs": 212.58, + "taskMs": 3803.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 303, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1607.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 382.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.2, + "success": true + } + ] + }, + { + "sessionId": "67b281c3-458d-43ca-b816-c88963f78e14", + "createMs": 298.14, + "connectMs": 230.2, + "taskMs": 4511.69, + "actionsCompleted": 10, + "actionsPerSecond": 2.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 778.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 442.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 133.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1393.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 809.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 403.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.32, + "success": true + } + ] + }, + { + "sessionId": "9b39be3a-32c6-4eb5-950f-74eb187aa2ec", + "createMs": 465.55, + "connectMs": 230.9, + "taskMs": 4281.8, + "actionsCompleted": 10, + "actionsPerSecond": 2.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 280.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 376.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1950.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 431.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 302.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.68, + "success": true + } + ] + }, + { + "sessionId": "1b7ca216-be4a-442e-98cc-68dd8036e126", + "createMs": 553.46, + "connectMs": 249.3, + "taskMs": 3623.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 607.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 276.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1635.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 175.66, + "success": true + } + ] + }, + { + "sessionId": "8b25426b-d3c9-40c0-b1be-a2cd6792850c", + "createMs": 284.53, + "connectMs": 240.73, + "taskMs": 3432.03, + "actionsCompleted": 10, + "actionsPerSecond": 2.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 607.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 300.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1571.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 271.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 216.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.37, + "success": true + } + ] + }, + { + "sessionId": "579e15e1-aa11-45d3-a845-b012d5df3c66", + "createMs": 268.39, + "connectMs": 298.95, + "taskMs": 3646.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 628.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 303.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 312.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1561.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 282.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 230.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 219.15, + "success": true + } + ] + }, + { + "sessionId": "4c141703-9478-44a1-8cd0-643145ad4446", + "createMs": 425.06, + "connectMs": 315.8, + "taskMs": 4348.87, + "actionsCompleted": 10, + "actionsPerSecond": 2.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 719.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 290.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 408.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1439, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 331.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.78, + "success": true + } + ] + }, + { + "sessionId": "d8785462-17a4-4e45-bda7-f9d0cb98fc03", + "createMs": 275, + "connectMs": 297.64, + "taskMs": 3759.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 646.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 249.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1539.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 529.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.01, + "success": true + } + ] + }, + { + "sessionId": "a03c396a-023c-4723-8fa0-fe4b604d980c", + "createMs": 351.14, + "connectMs": 339.72, + "taskMs": 3699.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 764.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 279.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 308.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 66.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1474.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 311.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.27, + "success": true + } + ] + }, + { + "sessionId": "377c2c6a-94fb-4ce7-9430-7bd58d0bef11", + "createMs": 546.08, + "connectMs": 324.15, + "taskMs": 3532.03, + "actionsCompleted": 10, + "actionsPerSecond": 2.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 261.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1553.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 371.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 260.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 160.65, + "success": true + } + ] + }, + { + "sessionId": "848da5d6-eeef-4e7d-af82-6f2fa63d229c", + "createMs": 311.45, + "connectMs": 344.97, + "taskMs": 3600.6, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 245.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 318.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1500.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 306.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.83, + "success": true + } + ] + }, + { + "sessionId": "06740d93-4184-44d7-80e0-31a2ff66cfb9", + "createMs": 359.54, + "connectMs": 405.56, + "taskMs": 3960.94, + "actionsCompleted": 10, + "actionsPerSecond": 2.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 667.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 307.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1593.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.06, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + } + ] + }, + { + "sessionId": "b096e079-0f91-4d90-96c2-2e39c23d46f3", + "createMs": 368.8, + "connectMs": 371.13, + "taskMs": 3353.56, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 496.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 288.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1554.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 284.23, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 240.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.83, + "success": true + } + ] + }, + { + "sessionId": "af9bb83f-e617-4980-a0f1-bdf421689d0c", + "createMs": 377.49, + "connectMs": 380.31, + "taskMs": 4237.53, + "actionsCompleted": 10, + "actionsPerSecond": 2.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 759.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 323.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1757.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 357.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.29, + "success": true + } + ] + }, + { + "sessionId": "3543d3cc-2b20-467b-ae4a-63145aabb808", + "createMs": 300.69, + "connectMs": 454.97, + "taskMs": 3998.73, + "actionsCompleted": 10, + "actionsPerSecond": 2.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 64.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1617.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 339.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 205.23, + "success": true + } + ] + }, + { + "sessionId": "0bb3f0b7-9a02-47a0-8cc5-cfbe6b140d72", + "createMs": 286.2, + "connectMs": 422.55, + "taskMs": 3697.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1588.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 501.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.49, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.06, + "success": true + } + ] + }, + { + "sessionId": "795f4523-eda1-4f18-8903-1595e515617e", + "createMs": 406.61, + "connectMs": 483.28, + "taskMs": 3933.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 554.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 283.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 321.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1662.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 484.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.31, + "success": true + } + ] + }, + { + "sessionId": "8a7fe5be-6cbc-4446-8a27-5a1cd48a4328", + "createMs": 456.83, + "connectMs": 509.76, + "taskMs": 4250.24, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 307.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 388.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1532.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 589.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 435.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 187.7, + "success": true + } + ] + }, + { + "sessionId": "596f8fd9-cb90-4405-8980-4798fe18b86c", + "createMs": 277.74, + "connectMs": 504.18, + "taskMs": 3952.36, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 486.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 323.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1594.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 419.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 502.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.07, + "success": true + } + ] + }, + { + "sessionId": "2d47a12c-d641-4054-b25c-bba1a91ad9c0", + "createMs": 462.78, + "connectMs": 540.1, + "taskMs": 4117.62, + "actionsCompleted": 10, + "actionsPerSecond": 2.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 556.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 290.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 325.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 59.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1765.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 468.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 249.74, + "success": true + } + ] + }, + { + "sessionId": "01da22ad-da90-4d15-ad82-9134c53384ae", + "createMs": 554.93, + "connectMs": 546.39, + "taskMs": 4131.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 912, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 255.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 563.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 158.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1123.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.66, + "success": true + } + ] + }, + { + "sessionId": "d3d1fa79-8aaf-4e7d-8443-89946ed32f3e", + "createMs": 585.42, + "connectMs": 550.23, + "taskMs": 11143.74, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 536.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 278.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 303.85, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10002.36, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 21 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "c412be52-0ba7-4c9f-b1ac-f9144032229f", + "createMs": 257.14, + "connectMs": 535.35, + "taskMs": 3798.45, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 882.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 106.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1494.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 336.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 36.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.8, + "success": true + } + ] + }, + { + "sessionId": "0aa826ff-37f1-4a5b-bee3-529a3b4373ab", + "createMs": 266.07, + "connectMs": 849.4, + "taskMs": 3494.7, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 656.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 291.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1479.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 343.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 121.48, + "success": true + } + ] + }, + { + "sessionId": "bf84bd1c-099a-41eb-80f0-7c35d256aa32", + "createMs": 296.2, + "connectMs": 627.01, + "taskMs": 4258.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 639.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 316.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1567.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 819.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 314.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.39, + "success": true + } + ] + }, + { + "sessionId": "b41ed821-16dc-4e88-b5c2-0004767fe3cf", + "createMs": 417.83, + "connectMs": 639.91, + "taskMs": 3949.18, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 747.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 301.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 455.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 131.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1392.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 275.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.88, + "success": true + } + ] + }, + { + "sessionId": "22cd176e-b89a-4895-90c0-61e5f4204820", + "createMs": 292.5, + "connectMs": 661.05, + "taskMs": 4186.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 113.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1536.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 439.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.8, + "success": true + } + ] + }, + { + "sessionId": "4ef15c09-663f-4aac-9e93-4c5a296d7343", + "createMs": 405.68, + "connectMs": 663.75, + "taskMs": 4459.61, + "actionsCompleted": 10, + "actionsPerSecond": 2.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 325.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2156.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 519.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.82, + "success": true + } + ] + }, + { + "sessionId": "3ed92403-b0cf-4bee-a606-ccb344d16869", + "createMs": 330.81, + "connectMs": 643.04, + "taskMs": 3561.02, + "actionsCompleted": 10, + "actionsPerSecond": 2.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 568.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 235.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 277.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1462.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.7, + "success": true + } + ] + }, + { + "sessionId": "2a5df7e1-50e6-4181-8fe4-714b3a9e98a8", + "createMs": 425.12, + "connectMs": 712.18, + "taskMs": 4716.48, + "actionsCompleted": 10, + "actionsPerSecond": 2.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 733.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 289.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 132.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1859.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.08, + "success": true + } + ] + }, + { + "sessionId": "8e1da44a-4870-4b60-bddc-b238ce443cfd", + "createMs": 462.03, + "connectMs": 719.44, + "taskMs": 4227.67, + "actionsCompleted": 10, + "actionsPerSecond": 2.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 826.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 133.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1511.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 325.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 377.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 64.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 84.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.69, + "success": true + } + ] + }, + { + "sessionId": "2b3cd565-e671-4ad6-bf8e-793054caa78c", + "createMs": 416.5, + "connectMs": 702.09, + "taskMs": 3843.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 223.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1608.54, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 535.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.15, + "success": true + } + ] + }, + { + "sessionId": "078ccaa5-062b-4732-86c1-dd247eb8b0fc", + "createMs": 524.68, + "connectMs": 723.27, + "taskMs": 3748.67, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 693.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 225.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1692.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 383.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 268.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.59, + "success": true + } + ] + }, + { + "sessionId": "5a1eee09-d912-4a26-8ed6-c9f9e4baa070", + "createMs": 344.26, + "connectMs": 740.19, + "taskMs": 4192.66, + "actionsCompleted": 10, + "actionsPerSecond": 2.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 655.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 235.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 58.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1569.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 757.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 165.11, + "success": true + } + ] + }, + { + "sessionId": "386ee54d-0ec0-4a1e-828b-7122074481b8", + "createMs": 360.49, + "connectMs": 796.3, + "taskMs": 4577.93, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 707.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 359.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 108.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1446.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 855.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 533.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.41, + "success": true + } + ] + }, + { + "sessionId": "45e9787f-2157-47d1-80fe-3aeafe417052", + "createMs": 565.76, + "connectMs": 757.46, + "taskMs": 3954.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 772.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 221.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 302.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1834.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 319.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 235.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 161.15, + "success": true + } + ] + }, + { + "sessionId": "93a04ea6-d62a-4597-8197-b0d64d3cec9b", + "createMs": 315.75, + "connectMs": 832.42, + "taskMs": 4214.34, + "actionsCompleted": 10, + "actionsPerSecond": 2.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 605.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 278.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 53.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2070.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 348.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.73, + "success": true + } + ] + }, + { + "sessionId": "44a6a4c5-3309-4ebe-9b1e-5b67b4d79152", + "createMs": 288.71, + "connectMs": 815.13, + "taskMs": 4018.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 254.38, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1588.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 687.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.77, + "success": true + } + ] + }, + { + "sessionId": "3fc798a8-c8e1-4ecf-8e59-1df40496fed0", + "createMs": 319.82, + "connectMs": 825.49, + "taskMs": 3946.45, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 815.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 214.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 601.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 149.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1194.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 354.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 382.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.99, + "success": true + } + ] + }, + { + "sessionId": "d16b7877-3e63-4c4d-80f7-51cc8e792fac", + "createMs": 348.1, + "connectMs": 829.36, + "taskMs": 4209.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 717.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 225.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1772.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 822.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 228.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.26, + "success": true + } + ] + }, + { + "sessionId": "68cd94fe-e19a-452f-9932-8b406823fd99", + "createMs": 369.39, + "connectMs": 859.35, + "taskMs": 4586.36, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 693.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 300.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 264.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1760.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 736.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 577.76, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 151.35, + "success": true + } + ] + }, + { + "sessionId": "142b98ba-ad7b-4c52-aff6-4c1e515cac40", + "createMs": 317.98, + "connectMs": 925.55, + "taskMs": 4590.9, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 725.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 766.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 177.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1176.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 734.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.52, + "success": true + } + ] + }, + { + "sessionId": "a4ab962d-d18c-43fc-b569-4a1cf8996748", + "createMs": 445.06, + "connectMs": 941.64, + "taskMs": 3935.75, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 725.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 327.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 451.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 131.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1342.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 295.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216, + "success": true + } + ] + }, + { + "sessionId": "cd9a15a7-5c3c-4738-9053-42f598aa1dfb", + "createMs": 336.81, + "connectMs": 883.94, + "taskMs": 3653.28, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 645.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 306.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1570.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 467, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.79, + "success": true + } + ] + }, + { + "sessionId": "1886386b-c3a6-4160-9163-fac47ee7fe2b", + "createMs": 304.55, + "connectMs": 969.92, + "taskMs": 3961.18, + "actionsCompleted": 10, + "actionsPerSecond": 2.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 752.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 369.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1619.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 291.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.74, + "success": true + } + ] + }, + { + "sessionId": "33dbe806-ade8-4a89-91c2-f690e12a8849", + "createMs": 264.95, + "connectMs": 987.31, + "taskMs": 4019.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 267.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 376.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1621.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 365.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.13, + "success": true + } + ] + }, + { + "sessionId": "8867d582-eca6-4cae-909a-b80aa987a44e", + "createMs": 283.02, + "connectMs": 1015.03, + "taskMs": 4625.68, + "actionsCompleted": 10, + "actionsPerSecond": 2.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 821.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 280.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 721.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 160.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1436.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 539.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 390.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.36, + "success": true + } + ] + }, + { + "sessionId": "946f88a7-7522-4b1f-b6a0-c9493bbb87d8", + "createMs": 397.47, + "connectMs": 962.76, + "taskMs": 3725.13, + "actionsCompleted": 10, + "actionsPerSecond": 2.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 738.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 216.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 227.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1438.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 603.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 127.73, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 587.13, + "p95": 587.13, + "p99": 587.13, + "samples": 1 + }, + "connectMs": { + "median": 1018.61, + "p95": 1018.61, + "p99": 1018.61, + "samples": 1 + }, + "taskMs": { + "median": 4716.48, + "p95": 4716.48, + "p99": 4716.48, + "samples": 1 + }, + "loopMs": { + "median": 3954.97, + "p95": 4577.93, + "p99": 4590.9, + "samples": 49 + }, + "actionsPerSecond": { + "median": 44.31, + "p95": 44.31, + "p99": 44.31, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.53, + "p95": 2.83, + "p99": 2.86, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 678.98, + "p95": 815.62, + "p99": 826.61, + "samples": 50 + }, + "waitForSelector": { + "median": 278.66, + "p95": 535.48, + "p99": 687.55, + "samples": 148 + }, + "screenshot": { + "median": 306.92, + "p95": 469.05, + "p99": 563.93, + "samples": 99 + }, + "textContent": { + "median": 25.06, + "p95": 131.69, + "p99": 133.9, + "samples": 99 + }, + "click": { + "median": 1569.88, + "p95": 1834.08, + "p99": 1950.04, + "samples": 49 + }, + "goBack": { + "median": 54.31, + "p95": 65.81, + "p99": 72.09, + "samples": 49 + } + } + }, + "compositeScore": 83.73, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 1152.96, + "connectMs": 329.61, + "taskMs": 11892.14, + "releaseMs": 328.2, + "totalMs": 13752.59, + "aggregateActionsPerSecond": 41.54, + "sessions": [ + { + "sessionId": "8b188338-fbd2-4867-9be0-268963645c9c", + "createMs": 1096.76, + "connectMs": 236.63, + "taskMs": 5755.38, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1301.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 228.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 450.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2669.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 410.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.88, + "success": true + } + ] + }, + { + "sessionId": "1133b92c-5a1c-4ad6-a298-4367d00554f6", + "createMs": 860.34, + "connectMs": 236.72, + "taskMs": 4438.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 563.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 704.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 468.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1226.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 400.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 154.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 252.73, + "success": true + } + ] + }, + { + "sessionId": "a2d3e1b8-cfe3-4f98-94b4-604ec8f71e70", + "createMs": 555.2, + "connectMs": 209.99, + "taskMs": 4837.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1246.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 470.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1335.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 961.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 162.93, + "success": true + } + ] + }, + { + "sessionId": "9219c511-b2f2-455c-b4c3-9ed4935d0c2b", + "createMs": 1046.32, + "connectMs": 235.26, + "taskMs": 7142.32, + "actionsCompleted": 10, + "actionsPerSecond": 1.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1370.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 438.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 90.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2732.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 955.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1025.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 148.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.52, + "success": true + } + ] + }, + { + "sessionId": "a804698a-a4d3-44c4-8660-8524be76b57b", + "createMs": 975.83, + "connectMs": 218, + "taskMs": 5081.63, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1208.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 169.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 546.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1648.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 769.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 422.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.72, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 142.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.63, + "success": true + } + ] + }, + { + "sessionId": "6e915cc1-3056-47aa-87a5-99dea4421e3b", + "createMs": 856.59, + "connectMs": 238.13, + "taskMs": 3690.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 970.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 162.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 456.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 649.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 593.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 406.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 110.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 297.52, + "success": true + } + ] + }, + { + "sessionId": "874c698f-6072-41c7-99c6-ca89231c67e1", + "createMs": 982.26, + "connectMs": 240.37, + "taskMs": 4491.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1139.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 486.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1219.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 704.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 274.03, + "success": true + } + ] + }, + { + "sessionId": "942d102a-c6c7-41f1-8c7c-173841e85f46", + "createMs": 482.1, + "connectMs": 223.35, + "taskMs": 7149.22, + "actionsCompleted": 10, + "actionsPerSecond": 1.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1215.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 182.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4159.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 209.58, + "success": true + } + ] + }, + { + "sessionId": "9395333c-b7f8-4c4b-ac61-ab462d32b53a", + "createMs": 463.29, + "connectMs": 230.42, + "taskMs": 6329.76, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1256.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 170.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 614.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1760.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1422.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 592.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 184.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 249.74, + "success": true + } + ] + }, + { + "sessionId": "b04c1f02-2885-4285-84e6-3a970620b606", + "createMs": 434.23, + "connectMs": 238.1, + "taskMs": 5694.03, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1175.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 181.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 505.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2423.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 577.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 415.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.27, + "success": true + } + ] + }, + { + "sessionId": "5131409c-a20d-4af9-a6e9-f3dccac7998b", + "createMs": 1084.93, + "connectMs": 248.54, + "taskMs": 3490.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 961.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 170.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 435.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 630.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 580.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 365.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 235.97, + "success": true + } + ] + }, + { + "sessionId": "5c466158-7836-400c-be4d-0fbd0da922f4", + "createMs": 407.82, + "connectMs": 234.28, + "taskMs": 6146.6, + "actionsCompleted": 10, + "actionsPerSecond": 1.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1252.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 171.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 468.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2863.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 498.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 159.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + } + ] + }, + { + "sessionId": "a1f985dc-27e2-4cf2-a8ab-d05fc0c55d20", + "createMs": 871.4, + "connectMs": 229.26, + "taskMs": 5221.95, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1202.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 545.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1747.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 594.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 499.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 242.46, + "success": true + } + ] + }, + { + "sessionId": "1db438c8-4ea4-4019-98fc-ad91ab175fc5", + "createMs": 995.73, + "connectMs": 249.96, + "taskMs": 6329.5, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1291.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 202.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 432.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2860.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 639.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 260.33, + "success": true + } + ] + }, + { + "sessionId": "8b66a670-f8c9-42e9-9ddb-df1f1471b77d", + "createMs": 932.74, + "connectMs": 247.57, + "taskMs": 4954.71, + "actionsCompleted": 10, + "actionsPerSecond": 2.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1161.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 186.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 411.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1594, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 821.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 395.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.98, + "success": true + } + ] + }, + { + "sessionId": "b61078b4-93c2-4f9d-af0d-13c2b5c935f7", + "createMs": 1003.25, + "connectMs": 251.82, + "taskMs": 8042.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 736.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 607.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4335.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 752.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 723.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 562.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.61, + "success": true + } + ] + }, + { + "sessionId": "d678a8c6-bd00-4ce8-95eb-6b24ddc014f6", + "createMs": 1128.43, + "connectMs": 246.67, + "taskMs": 5410.34, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1428.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 88.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1962.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 472.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 170.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 265.96, + "success": true + } + ] + }, + { + "sessionId": "7a72df16-26bf-420d-94a9-4d50414307a0", + "createMs": 474.66, + "connectMs": 264.8, + "taskMs": 7408.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1231.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 173.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4161.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 529.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 539.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 392.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 36.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.59, + "success": true + } + ] + }, + { + "sessionId": "8639b8ae-b9b5-43ab-a5bd-aa27d11f3c73", + "createMs": 559.35, + "connectMs": 266.59, + "taskMs": 4509.38, + "actionsCompleted": 10, + "actionsPerSecond": 2.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1146.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 438.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 839.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 953.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 549.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.37, + "success": true + } + ] + }, + { + "sessionId": "11bd8619-151d-4f1b-9bd2-dc51781c045e", + "createMs": 820.83, + "connectMs": 253.79, + "taskMs": 5408.01, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1322.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1536.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 918.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 501.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 109.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 286.56, + "success": true + } + ] + }, + { + "sessionId": "bdfd29a0-a1e9-41c3-96ae-23d0da1f09e8", + "createMs": 1116.06, + "connectMs": 251.87, + "taskMs": 4972.93, + "actionsCompleted": 10, + "actionsPerSecond": 2.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1292.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 185.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 605.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1089.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 895.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 494.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.2, + "success": true + } + ] + }, + { + "sessionId": "83ca32db-2035-408d-8a5b-c2000d51b36b", + "createMs": 896.19, + "connectMs": 249.46, + "taskMs": 5084.81, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1177.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 523.73, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1469.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 873.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 529.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 146.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 148.54, + "success": true + } + ] + }, + { + "sessionId": "275d298b-e215-497b-be44-ce5a65fcff17", + "createMs": 1118.8, + "connectMs": 245.88, + "taskMs": 5173.13, + "actionsCompleted": 10, + "actionsPerSecond": 1.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1344.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 191.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 458.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 90.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1395.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 985.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 172.56, + "success": true + } + ] + }, + { + "sessionId": "b2a27f82-a952-441c-bbdc-8b8e45466f70", + "createMs": 1134.1, + "connectMs": 252.09, + "taskMs": 11886.83, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1125.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 157.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 586.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10003.13, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "baabe207-8639-469e-bb4d-3af3bee93584", + "createMs": 971.98, + "connectMs": 262.55, + "taskMs": 6306.78, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1576.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 138.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2716.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 558.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 164.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 303.85, + "success": true + } + ] + }, + { + "sessionId": "da7506ad-ec91-4be6-a55b-ce2e4810d0eb", + "createMs": 899, + "connectMs": 250.48, + "taskMs": 4731.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1379.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 421.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1187.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 805.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 436.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 116.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.3, + "success": true + } + ] + }, + { + "sessionId": "3b9ca900-55dd-4b53-ba8f-76843fc81883", + "createMs": 1079.45, + "connectMs": 263.63, + "taskMs": 5260.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1259.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 156.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1155.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1479.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 463.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 75.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 233.07, + "success": true + } + ] + }, + { + "sessionId": "93a4c2a0-b78c-4263-8ac5-047f92ff7994", + "createMs": 571.7, + "connectMs": 265.36, + "taskMs": 5795.76, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1304.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 89.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1449.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 631.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1249.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 237.06, + "success": true + } + ] + }, + { + "sessionId": "72056dd8-e0b6-4e81-ac92-a5cf56399584", + "createMs": 932.06, + "connectMs": 258.4, + "taskMs": 7740.84, + "actionsCompleted": 10, + "actionsPerSecond": 1.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1265.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 161.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4234.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 633.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 535.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 454.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 162.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 265.2, + "success": true + } + ] + }, + { + "sessionId": "6f2fb9bc-dd0b-469e-832c-8dc555e3dd86", + "createMs": 560.22, + "connectMs": 289.87, + "taskMs": 5024.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1148.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 426.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1439.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1121.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.07, + "success": true + } + ] + }, + { + "sessionId": "5a6e1889-221e-42cf-a736-58806c41f037", + "createMs": 817.19, + "connectMs": 282.57, + "taskMs": 4798.29, + "actionsCompleted": 10, + "actionsPerSecond": 2.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1367.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 435.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 89.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1005.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 921.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 458.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 94.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.22, + "success": true + } + ] + }, + { + "sessionId": "032088de-a307-4dc8-8ab0-5060c5c830da", + "createMs": 929.21, + "connectMs": 260.36, + "taskMs": 5253.82, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1192.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 190.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 512.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1320.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1194.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 454.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 106.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.8, + "success": true + } + ] + }, + { + "sessionId": "3a967c6c-bd6b-435c-9e7c-02eb6352ba88", + "createMs": 1091.4, + "connectMs": 300.53, + "taskMs": 7704.39, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1324.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4153.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 750.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 263.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 595.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 139.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 283.36, + "success": true + } + ] + }, + { + "sessionId": "e32b5474-9531-497b-8559-7d9067215c66", + "createMs": 845.32, + "connectMs": 292.87, + "taskMs": 7819.43, + "actionsCompleted": 10, + "actionsPerSecond": 1.28, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1523.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 137.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4153.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 590.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 451.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 641.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 100.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.01, + "success": true + } + ] + }, + { + "sessionId": "df24a06f-2a19-4c5c-9014-af493e0951c8", + "createMs": 1026.41, + "connectMs": 292.15, + "taskMs": 4407.27, + "actionsCompleted": 10, + "actionsPerSecond": 2.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1108.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 152.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 462.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1048.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 806.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 410.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 73.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.17, + "success": true + } + ] + }, + { + "sessionId": "f6f29068-bf87-47bc-ab9c-33d057924f8d", + "createMs": 590.98, + "connectMs": 291.21, + "taskMs": 6216.64, + "actionsCompleted": 10, + "actionsPerSecond": 1.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1307.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 213.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 395.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2152.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1221.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 578.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 110.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 195.97, + "success": true + } + ] + }, + { + "sessionId": "b32ef835-4ad8-47df-a192-3833497748a0", + "createMs": 1012.31, + "connectMs": 279.23, + "taskMs": 8519.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1311.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 166.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4246.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 512.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 975.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 982.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.07, + "success": true + } + ] + }, + { + "sessionId": "8939c9d0-d28c-45d2-8e2e-b0e10d5e1328", + "createMs": 991.39, + "connectMs": 279.55, + "taskMs": 5240.59, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1584.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 122.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 473.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2062.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 270.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 299.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 145.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 245.51, + "success": true + } + ] + }, + { + "sessionId": "b2889489-1f80-4c58-a9fc-06628dc97fd9", + "createMs": 583.07, + "connectMs": 292.18, + "taskMs": 4282.43, + "actionsCompleted": 10, + "actionsPerSecond": 2.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1120.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 895.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 772.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.55, + "success": true + } + ] + }, + { + "sessionId": "3c55da29-6696-42d0-a277-4d505dd2b92c", + "createMs": 841.13, + "connectMs": 290.54, + "taskMs": 7661.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1514.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 131.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 591.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2390.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 841.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 530.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1465.31, + "success": true + } + ] + }, + { + "sessionId": "c9f195a6-b0e5-4c1a-a621-9a5898c27154", + "createMs": 564.6, + "connectMs": 288.68, + "taskMs": 5270.28, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1337.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 467.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 82.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1465.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 717.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 565.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.58, + "success": true + } + ] + }, + { + "sessionId": "84d5b9ac-086e-43b8-b5ed-c9a30cf5be40", + "createMs": 1057.44, + "connectMs": 312.68, + "taskMs": 6599.94, + "actionsCompleted": 10, + "actionsPerSecond": 1.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1227.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 467.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2957.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 660.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 769.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 130.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 178.23, + "success": true + } + ] + }, + { + "sessionId": "67bf491b-1f87-435a-8b70-bca63a0af355", + "createMs": 1021.6, + "connectMs": 324.45, + "taskMs": 6489.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1232.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 505.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1763.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1749.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 548.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 190.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 285.53, + "success": true + } + ] + }, + { + "sessionId": "dddca3ab-aa48-4ec0-9e0b-106d38f8d308", + "createMs": 862.26, + "connectMs": 316.97, + "taskMs": 7518.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1236.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4197.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 540.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 642.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.49, + "success": true + } + ] + }, + { + "sessionId": "baa1a9e1-576e-4a1f-9437-929e4489cfad", + "createMs": 1042.37, + "connectMs": 325.25, + "taskMs": 4815.21, + "actionsCompleted": 10, + "actionsPerSecond": 2.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1384.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 350.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1418.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 737.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 359.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 232.49, + "success": true + } + ] + }, + { + "sessionId": "712780b9-e40a-4417-aab3-84ae4f46f31b", + "createMs": 903.17, + "connectMs": 322.47, + "taskMs": 4794.78, + "actionsCompleted": 10, + "actionsPerSecond": 2.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1335.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 190.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 596.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 851.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 929.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 475.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 245.2, + "success": true + } + ] + }, + { + "sessionId": "6aebd9aa-caf6-4d37-9e1b-756467bc5efa", + "createMs": 883.83, + "connectMs": 306.96, + "taskMs": 7683.17, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1331.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 198.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4194.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 809.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 372.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 129.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 259.64, + "success": true + } + ] + }, + { + "sessionId": "c085f11a-5dbe-4e55-ada0-4e9acca9faa7", + "createMs": 854.52, + "connectMs": 318.73, + "taskMs": 8545.69, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1221.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1101.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4446.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 112.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.24, + "success": true + } + ] + }, + { + "sessionId": "a0d9423a-0d46-4cf7-8d90-b17fa8c64631", + "createMs": 1070.33, + "connectMs": 320, + "taskMs": 5865.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1371.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 193.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 432.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2384.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 564.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 432.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 154.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.47, + "success": true + } + ] + }, + { + "sessionId": "47f1c6ed-b3c3-41a5-a3c8-a7a01c3a2cd1", + "createMs": 496.83, + "connectMs": 320.77, + "taskMs": 5608.13, + "actionsCompleted": 10, + "actionsPerSecond": 1.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1176.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 200.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 434.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1372.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1038.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1026.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 127.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 198.46, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 1152.96, + "p95": 1152.96, + "p99": 1152.96, + "samples": 1 + }, + "connectMs": { + "median": 329.61, + "p95": 329.61, + "p99": 329.61, + "samples": 1 + }, + "taskMs": { + "median": 8545.69, + "p95": 8545.69, + "p99": 8545.69, + "samples": 1 + }, + "loopMs": { + "median": 5410.34, + "p95": 7740.84, + "p99": 8042.1, + "samples": 49 + }, + "actionsPerSecond": { + "median": 41.54, + "p95": 41.54, + "p99": 41.54, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.82, + "p95": 2.25, + "p99": 2.34, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 1254.24, + "p95": 1428.54, + "p99": 1523.04, + "samples": 50 + }, + "waitForSelector": { + "median": 232.78, + "p95": 929.41, + "p99": 985.4, + "samples": 148 + }, + "screenshot": { + "median": 467.74, + "p95": 4153.7, + "p99": 4197.82, + "samples": 99 + }, + "textContent": { + "median": 15.03, + "p95": 55.6, + "p99": 88.5, + "samples": 99 + }, + "click": { + "median": 1372.2, + "p95": 2716.52, + "p99": 2860.29, + "samples": 49 + }, + "goBack": { + "median": 130.43, + "p95": 162.26, + "p99": 170.6, + "samples": 49 + } + } + }, + "compositeScore": 79.15, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 10, + "createMs": 2369.47, + "connectMs": 284.24, + "taskMs": 2340.68, + "releaseMs": 40.03, + "totalMs": 5045.79, + "aggregateActionsPerSecond": 42.72, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "u0vopbdgub545x6h2ijccl15", + "createMs": 186.03, + "connectMs": 101.24, + "taskMs": 1739.65, + "actionsCompleted": 10, + "actionsPerSecond": 5.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 365.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 234.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 382.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 162.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 312.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 57.4, + "success": true + } + ] + }, + { + "sessionId": "px29nj9alqyta02dbbj5s8l0", + "createMs": 210.78, + "connectMs": 127.07, + "taskMs": 1568.98, + "actionsCompleted": 10, + "actionsPerSecond": 6.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 357.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 341.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 116.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 258.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 26.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 40.02, + "success": true + } + ] + }, + { + "sessionId": "cs4qzhudl4m5xowrm17urjik", + "createMs": 181.06, + "connectMs": 146.65, + "taskMs": 1633.62, + "actionsCompleted": 10, + "actionsPerSecond": 6.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 404.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 229.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 320.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 229.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 194.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.48, + "success": true + } + ] + }, + { + "sessionId": "rqwe6bjet8oa24jrbmi6dlj6", + "createMs": 186.15, + "connectMs": 167.93, + "taskMs": 2111.61, + "actionsCompleted": 10, + "actionsPerSecond": 4.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 366.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 557.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.5, + "success": true + } + ] + }, + { + "sessionId": "toxqo0yf7ce6tjysm1carwa0", + "createMs": 193.05, + "connectMs": 226.92, + "taskMs": 1928.86, + "actionsCompleted": 10, + "actionsPerSecond": 5.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 433.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 278.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 391.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 261.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 37.29, + "success": true + } + ] + }, + { + "sessionId": "evzbypfe9vhfyh89yggsh4si", + "createMs": 196.94, + "connectMs": 160.68, + "taskMs": 1678.25, + "actionsCompleted": 10, + "actionsPerSecond": 5.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 308.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 147.48, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 179.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 437.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 167.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 321.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 73.36, + "success": true + } + ] + }, + { + "sessionId": "vpjfr3mnc1ihngwv6vl36hz6", + "createMs": 225.18, + "connectMs": 202.83, + "taskMs": 1769.03, + "actionsCompleted": 10, + "actionsPerSecond": 5.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 401.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 118.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 378.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 128.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 268.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 90.32, + "success": true + } + ] + }, + { + "sessionId": "f82slqx3y2lw51l79r8dz13j", + "createMs": 227.18, + "connectMs": 208.62, + "taskMs": 2161.13, + "actionsCompleted": 10, + "actionsPerSecond": 4.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 326.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 232.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 756.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 174.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 286.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 79.17, + "success": true + } + ] + }, + { + "sessionId": "mdpqbl7lk8z9tkhn6fkc8m2i", + "createMs": 242.63, + "connectMs": 222.59, + "taskMs": 2339.32, + "actionsCompleted": 10, + "actionsPerSecond": 4.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 355.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 279.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 428.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 613.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 110.31, + "success": true + } + ] + }, + { + "sessionId": "eauvyg6ru98vtywzqm6gr7x9", + "createMs": 230.98, + "connectMs": 283.68, + "taskMs": 1943.41, + "actionsCompleted": 10, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 272.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 256.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 454.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 224.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 428.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 87.75, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 2369.47, + "p95": 2369.47, + "p99": 2369.47, + "samples": 1 + }, + "connectMs": { + "median": 284.24, + "p95": 284.24, + "p99": 284.24, + "samples": 1 + }, + "taskMs": { + "median": 2340.68, + "p95": 2340.68, + "p99": 2340.68, + "samples": 1 + }, + "loopMs": { + "median": 1848.94, + "p95": 2339.32, + "p99": 2339.32, + "samples": 10 + }, + "actionsPerSecond": { + "median": 42.72, + "p95": 42.72, + "p99": 42.72, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.42, + "p95": 6.37, + "p99": 6.37, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 361.73, + "p95": 433.63, + "p99": 433.63, + "samples": 10 + }, + "waitForSelector": { + "median": 155.02, + "p95": 339.45, + "p99": 557.06, + "samples": 30 + }, + "screenshot": { + "median": 265.06, + "p95": 321.97, + "p99": 321.97, + "samples": 20 + }, + "textContent": { + "median": 10.03, + "p95": 19.02, + "p99": 19.02, + "samples": 20 + }, + "click": { + "median": 387.17, + "p95": 756.19, + "p99": 756.19, + "samples": 10 + }, + "goBack": { + "median": 35.05, + "p95": 59.93, + "p99": 59.93, + "samples": 10 + } + } + }, + "compositeScore": 18.03, + "successRate": 0.2, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Rate limit exceeded. Please retry later." + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 8, + "createMs": 2960.98, + "connectMs": 4388.43, + "taskMs": 83146.12, + "releaseMs": 2382.36, + "totalMs": 94904.74, + "aggregateActionsPerSecond": 0.94, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "9d41df1e-7eae-4098-9563-ccae647b2f41", + "createMs": 1427.02, + "connectMs": 2473.2, + "taskMs": 83145.51, + "actionsCompleted": 9, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1441.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6756.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10175.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 408.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 18176.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3078.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 30000.74, + "success": false, + "error": "Action timed out" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5929.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 992.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 6185.58, + "success": true + } + ] + }, + { + "sessionId": "0ca91677-8646-4e55-b14b-0fefebfe168f", + "createMs": 1750.58, + "connectMs": 2591.52, + "taskMs": 41695.12, + "actionsCompleted": 10, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2170.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4042.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8175.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 414.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 12456.27, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3361.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5403.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 398.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1795.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3477.41, + "success": true + } + ] + }, + { + "sessionId": "6185e44b-04cc-4efb-bdc7-d81c8270cd03", + "createMs": 2959.81, + "connectMs": 2638.93, + "taskMs": 37459.66, + "actionsCompleted": 10, + "actionsPerSecond": 0.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1246.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3239.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4121.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 440.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13989.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3283.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5780.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 339.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 898.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4120.1, + "success": true + } + ] + }, + { + "sessionId": "d8ca16e0-85d2-4c7c-a086-e9e7a01fb888", + "createMs": 1363.4, + "connectMs": 3748.68, + "taskMs": 37012.74, + "actionsCompleted": 10, + "actionsPerSecond": 0.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1701.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4755.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4659.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 998.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13063.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4137.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2983.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 423.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 959.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3330.02, + "success": true + } + ] + }, + { + "sessionId": "e662e26e-7560-4393-9246-c158be8a762a", + "createMs": 2203.47, + "connectMs": 2465.56, + "taskMs": 82178.01, + "actionsCompleted": 9, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1624.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5822.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5998.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 401.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24289.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4894.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 30000.86, + "success": false, + "error": "Action timed out" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1366.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1374.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 6406.91, + "success": true + } + ] + }, + { + "sessionId": "9cc33c9f-1561-4a00-af22-996011286edd", + "createMs": 1222.75, + "connectMs": 3399.53, + "taskMs": 42927.06, + "actionsCompleted": 10, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1269.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5549.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6260.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 437.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15940.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2810.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5296.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 912.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 846.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3605.06, + "success": true + } + ] + }, + { + "sessionId": "f9f6c621-29fc-4e07-96d4-6b87091388cc", + "createMs": 1351.15, + "connectMs": 4387.01, + "taskMs": 46513.5, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1702.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5661.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5272.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 391.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15318.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3488.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5460.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1162.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 2953.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5102.97, + "success": true + } + ] + }, + { + "sessionId": "edbbbf2b-dec2-4de3-abab-1fcd8396cb19", + "createMs": 1738.12, + "connectMs": 3301.52, + "taskMs": 47293.34, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2107.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3298.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8883.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 409.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14306.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3110.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 9060.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 452.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1137.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4527.08, + "success": true + } + ] + } + ], + "maxLiveSessions": 8, + "maxConcurrentActions": 8, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 8, + "p95": 8, + "p99": 8, + "samples": 1 + }, + "createMs": { + "median": 2960.98, + "p95": 2960.98, + "p99": 2960.98, + "samples": 1 + }, + "connectMs": { + "median": 4388.43, + "p95": 4388.43, + "p99": 4388.43, + "samples": 1 + }, + "taskMs": { + "median": 47293.34, + "p95": 47293.34, + "p99": 47293.34, + "samples": 1 + }, + "loopMs": { + "median": 42311.09, + "p95": 47293.34, + "p99": 47293.34, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.94, + "p95": 0.94, + "p99": 0.94, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.22, + "p95": 0.27, + "p99": 0.27, + "samples": 8 + }, + "perActionType": { + "navigate": { + "median": 1662.67, + "p95": 2170.35, + "p99": 2170.35, + "samples": 8 + }, + "waitForSelector": { + "median": 4081.44, + "p95": 6185.58, + "p99": 6406.91, + "samples": 24 + }, + "screenshot": { + "median": 5620.64, + "p95": 10175.95, + "p99": 10175.95, + "samples": 14 + }, + "textContent": { + "median": 430.48, + "p95": 5929.84, + "p99": 5929.84, + "samples": 16 + }, + "click": { + "median": 14812.02, + "p95": 24289.14, + "p99": 24289.14, + "samples": 8 + }, + "goBack": { + "median": 1065.39, + "p95": 2953.5, + "p99": 2953.5, + "samples": 8 + } + } + }, + "compositeScore": 4.73, + "successRate": 0.12, + "sessionCeiling": 8, + "concurrencyAchieved": 8, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 5, + "createMs": 7108.01, + "connectMs": 1453.27, + "taskMs": 9789.04, + "releaseMs": 1278.66, + "totalMs": 20340.36, + "aggregateActionsPerSecond": 5.11, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "1ef1fff3-f97a-4771-96c2-970187256a07", + "createMs": 1217.87, + "connectMs": 441.37, + "taskMs": 4370.44, + "actionsCompleted": 10, + "actionsPerSecond": 2.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 323.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 450.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 558.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1532.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 405.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 516.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 363.19, + "success": true + } + ] + }, + { + "sessionId": "da49d575-0dba-42d8-81a3-16716a1f3f28", + "createMs": 1099.34, + "connectMs": 468.19, + "taskMs": 4635.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 270.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 572.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 638.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 57.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1443.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 460.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 565.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 128.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 440.68, + "success": true + } + ] + }, + { + "sessionId": "c2c54186-ce77-47b9-9152-04404b0c72f9", + "createMs": 1157.72, + "connectMs": 400.38, + "taskMs": 4055.04, + "actionsCompleted": 10, + "actionsPerSecond": 2.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 273.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 457.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 509.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1280.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 399.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 528.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 383.09, + "success": true + } + ] + }, + { + "sessionId": "60334976-590d-4d8e-8de3-040878090c49", + "createMs": 1038.33, + "connectMs": 414.11, + "taskMs": 9787.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1880.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 519.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3763.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1289.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 795.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 177.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 515.57, + "success": true + } + ] + }, + { + "sessionId": "2a51c614-7ea9-44f4-b342-81b3cc3aa052", + "createMs": 1218.26, + "connectMs": 1452.06, + "taskMs": 9044.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 470.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 543.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.77, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2587.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 779.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3182.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 494.48, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 7108.01, + "p95": 7108.01, + "p99": 7108.01, + "samples": 1 + }, + "connectMs": { + "median": 1453.27, + "p95": 1453.27, + "p99": 1453.27, + "samples": 1 + }, + "taskMs": { + "median": 9789.04, + "p95": 9789.04, + "p99": 9789.04, + "samples": 1 + }, + "loopMs": { + "median": 4635.82, + "p95": 9787.49, + "p99": 9787.49, + "samples": 5 + }, + "actionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.16, + "p95": 2.47, + "p99": 2.47, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 323.52, + "p95": 1880.22, + "p99": 1880.22, + "samples": 5 + }, + "waitForSelector": { + "median": 460.88, + "p95": 1289.3, + "p99": 1289.3, + "samples": 15 + }, + "screenshot": { + "median": 602.27, + "p95": 3182.44, + "p99": 3182.44, + "samples": 10 + }, + "textContent": { + "median": 54.63, + "p95": 63.16, + "p99": 63.16, + "samples": 10 + }, + "click": { + "median": 1532.67, + "p95": 3763.12, + "p99": 3763.12, + "samples": 5 + }, + "goBack": { + "median": 128.74, + "p95": 177.46, + "p99": 177.46, + "samples": 5 + } + } + }, + "compositeScore": 7.78, + "successRate": 0.1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 2222.77, + "connectMs": 284.32, + "taskMs": 11334.39, + "releaseMs": 457.07, + "totalMs": 14372.71, + "aggregateActionsPerSecond": 43.58, + "sessions": [ + { + "sessionId": "sess_3ee0f836764f466fab9c91f65032dbb8", + "createMs": 1861.82, + "connectMs": 191.76, + "taskMs": 6718.44, + "actionsCompleted": 10, + "actionsPerSecond": 1.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 773.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 633.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 679.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3267.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 694.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 156.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.92, + "success": true + } + ] + }, + { + "sessionId": "sess_c7761fd8d33a46ce9d25e72d7185a4ca", + "createMs": 1007.76, + "connectMs": 261.33, + "taskMs": 5437.93, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 295.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 341.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 458.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 38.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1512.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1080.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1149.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 158.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 329.66, + "success": true + } + ] + }, + { + "sessionId": "sess_1372d7e6cf5842f6b085b4b6ce3f4560", + "createMs": 1397.29, + "connectMs": 241.94, + "taskMs": 5390.57, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 217.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 405.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1294.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1530.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1095.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 90.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 305.17, + "success": true + } + ] + }, + { + "sessionId": "sess_b877ad78eed84465b1ce790f6a7bd145", + "createMs": 2179.42, + "connectMs": 243.91, + "taskMs": 6272.7, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 433.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 422.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 489.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2788.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1111.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 425.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 48.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 366.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.29, + "success": true + } + ] + }, + { + "sessionId": "sess_bb1850a2a3c0442bbaf8f06119da9869", + "createMs": 1894.06, + "connectMs": 279.34, + "taskMs": 6522.63, + "actionsCompleted": 10, + "actionsPerSecond": 1.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 506.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 437.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 33.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4080.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 469.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.37, + "success": true + } + ] + }, + { + "sessionId": "sess_4029d43f7ddc40d2a13df63b29b9342b", + "createMs": 680.91, + "connectMs": 240.99, + "taskMs": 5737.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 296.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 382.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 575.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2539.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 953.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 88.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 342.54, + "success": true + } + ] + }, + { + "sessionId": "sess_f940b41da4484b03ae00714bfefaddb4", + "createMs": 826.34, + "connectMs": 279.14, + "taskMs": 6479.82, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 493.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 623.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 738.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 250.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3187.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 556.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.13, + "success": true + } + ] + }, + { + "sessionId": "sess_172b474188824e9fa130e9fef2265fbe", + "createMs": 1463.4, + "connectMs": 246.49, + "taskMs": 5688.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 652.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 408.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 381.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2345.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 947.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 460.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 47.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 101.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.63, + "success": true + } + ] + }, + { + "sessionId": "sess_7b87fef4e39c4d88a1a50ced00b5bf8f", + "createMs": 1125.49, + "connectMs": 260.46, + "taskMs": 5727.62, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 333.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 367.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 482.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1695.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1483.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 741.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 222.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 316.12, + "success": true + } + ] + }, + { + "sessionId": "sess_fbe97973860c44479d39876b9fe31f64", + "createMs": 1562.23, + "connectMs": 235.7, + "taskMs": 6368.73, + "actionsCompleted": 10, + "actionsPerSecond": 1.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 761.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 465.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 418.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3177.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 762.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 379.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.15, + "success": true + } + ] + }, + { + "sessionId": "sess_fa43f5802864474d97c36e1623842cc3", + "createMs": 1604.38, + "connectMs": 243.32, + "taskMs": 5438.8, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 426.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 381.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 430.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 43.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1864.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1308.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 524.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 39.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 91.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 328.3, + "success": true + } + ] + }, + { + "sessionId": "sess_fb9da7ac75cc42e1aa8cf84bcadfdcda", + "createMs": 1391.57, + "connectMs": 197.97, + "taskMs": 5224.28, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 256.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 309.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 417.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1375.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1199.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1143.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 187.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.89, + "success": true + } + ] + }, + { + "sessionId": "sess_f7886539083a4d2f914c5574eade6b4e", + "createMs": 2110.45, + "connectMs": 205.52, + "taskMs": 5984.59, + "actionsCompleted": 10, + "actionsPerSecond": 1.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 696.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 412.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 41.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3144.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 382.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 472.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 45.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 215.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.05, + "success": true + } + ] + }, + { + "sessionId": "sess_6df5598d41a74e62b33aa53bec048c21", + "createMs": 701.81, + "connectMs": 279.17, + "taskMs": 5863.69, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 443.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 514.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2612.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 830.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 536.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 168.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 285, + "success": true + } + ] + }, + { + "sessionId": "sess_72bb5a9a84a0469d9795ba93f958ddfd", + "createMs": 2104.77, + "connectMs": 280.16, + "taskMs": 5478.71, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 401.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 410.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 38.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1923.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1209.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 551.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 92.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.06, + "success": true + } + ] + }, + { + "sessionId": "sess_3bbcc8a3a5d04a32966bd05062536f36", + "createMs": 861.2, + "connectMs": 258.25, + "taskMs": 7983.88, + "actionsCompleted": 10, + "actionsPerSecond": 1.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 376.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 419.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 572.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4002.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 805.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1195.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 492.18, + "success": true + } + ] + }, + { + "sessionId": "sess_22ddf38a9ff44f009c98676d6cec25b4", + "createMs": 1313.23, + "connectMs": 159.48, + "taskMs": 5452.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 300.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 364.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 444.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1732.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1109.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1022.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 122.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 290.55, + "success": true + } + ] + }, + { + "sessionId": "sess_2b8b104a3bbd47e8bde91feee34cca24", + "createMs": 1836.75, + "connectMs": 211.91, + "taskMs": 7906.41, + "actionsCompleted": 10, + "actionsPerSecond": 1.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2865.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1067.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1170.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1156.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 612.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 629.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.53, + "success": true + } + ] + }, + { + "sessionId": "sess_14d82bba21104d6db2139b66d55a8a38", + "createMs": 883.96, + "connectMs": 234.97, + "taskMs": 5114.77, + "actionsCompleted": 10, + "actionsPerSecond": 1.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 268.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 256.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1299.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1230.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1183.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.57, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 257.53, + "success": true + } + ] + }, + { + "sessionId": "sess_8e2ce912b6524670aca2e80ac314d0ba", + "createMs": 2220.59, + "connectMs": 278.91, + "taskMs": 5868.18, + "actionsCompleted": 10, + "actionsPerSecond": 1.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 451.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 386.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2515.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 962.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 432.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 189.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.53, + "success": true + } + ] + }, + { + "sessionId": "sess_dba734b0d87a4a02b3e5c8840904c4f5", + "createMs": 1225.93, + "connectMs": 180.8, + "taskMs": 5385.14, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 276.04, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 507.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1343.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1305.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1133.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 91.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 146.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 270.38, + "success": true + } + ] + }, + { + "sessionId": "sess_ecf1b041835b45b2a7b4fe9b9ba98a2e", + "createMs": 1697.18, + "connectMs": 175.15, + "taskMs": 6502.36, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 742.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 557.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 454.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 88.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3135.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 767.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 392.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 147.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.83, + "success": true + } + ] + }, + { + "sessionId": "sess_64a54ac6fc254adda9034aa090069c6c", + "createMs": 976.8, + "connectMs": 268.76, + "taskMs": 5784.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 496.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 446.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 441, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2511.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 917.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 442.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 38.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 336.21, + "success": true + } + ] + }, + { + "sessionId": "sess_8dd0b3fa1cbe4629862eeefd1cf38bdd", + "createMs": 1985.75, + "connectMs": 278.67, + "taskMs": 11333, + "actionsCompleted": 4, + "actionsPerSecond": 0.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 494.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 415.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10000.61, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 19 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "sess_9e9fa67d68834188870152475c6cf283", + "createMs": 825.68, + "connectMs": 279.8, + "taskMs": 6603.41, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1044.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 710.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 982.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 96.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2708.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 401.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 358.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.47, + "success": true + } + ] + }, + { + "sessionId": "sess_0b4b67f9a3cc4c2b99730292967d452a", + "createMs": 1540.33, + "connectMs": 280.02, + "taskMs": 6221.26, + "actionsCompleted": 10, + "actionsPerSecond": 1.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 876.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 472.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 391.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3032.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 551.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 461.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 141.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 189.58, + "success": true + } + ] + }, + { + "sessionId": "sess_f30f5dab7caa43e69288352e8d89f5f4", + "createMs": 608.26, + "connectMs": 203.64, + "taskMs": 5718.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 377.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 389.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 507.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1896.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1489.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 517.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 101.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 335.82, + "success": true + } + ] + }, + { + "sessionId": "sess_40f7ca60d77c4961b20fd1ce3879dcdc", + "createMs": 1684.68, + "connectMs": 258.52, + "taskMs": 5765.57, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 558.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 494.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 377.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2228.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1056.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 142.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.45, + "success": true + } + ] + }, + { + "sessionId": "sess_f8894c7b579c448d87c1978a7e855e40", + "createMs": 669.92, + "connectMs": 283.14, + "taskMs": 5899.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 320.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 411.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 60.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2709.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 866.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 511.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 203.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 305.08, + "success": true + } + ] + }, + { + "sessionId": "sess_98d6df2cb3674311af8d497abfa8f624", + "createMs": 1603.87, + "connectMs": 257.83, + "taskMs": 6740.42, + "actionsCompleted": 10, + "actionsPerSecond": 1.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 700.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 419.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 399.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4287.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 464.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 105.13, + "success": true + } + ] + }, + { + "sessionId": "sess_a3eaaf34c9c84a478f521669f38772a0", + "createMs": 1312.63, + "connectMs": 166.24, + "taskMs": 5458.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 301.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 454.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 441.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1622.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1313.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 828.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 279.95, + "success": true + } + ] + }, + { + "sessionId": "sess_318e05c471f94b1c9565faba9e1d6ab5", + "createMs": 2181.56, + "connectMs": 215.86, + "taskMs": 5799.52, + "actionsCompleted": 10, + "actionsPerSecond": 1.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 440.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 338.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 553.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2539.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 880.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 537.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 353.25, + "success": true + } + ] + }, + { + "sessionId": "sess_6d0d3daff33e43f5bad1433f12d847c8", + "createMs": 1113.11, + "connectMs": 216.11, + "taskMs": 5738.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 549.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 403.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 439.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 39.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2392.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 947.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 510.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 98.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.92, + "success": true + } + ] + }, + { + "sessionId": "sess_8ba4f61060224253aa162f7f1bee3d4d", + "createMs": 2220.13, + "connectMs": 169.98, + "taskMs": 5783.18, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 548, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 407.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 402.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2520.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 872.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 543.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 40.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 97.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 317.1, + "success": true + } + ] + }, + { + "sessionId": "sess_343d22cd42ca4db5a7bc275c80e04640", + "createMs": 2052.94, + "connectMs": 260.62, + "taskMs": 5391.67, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 410.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 349.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1693.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1308.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 694.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 39.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 99.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 275.31, + "success": true + } + ] + }, + { + "sessionId": "sess_9f8559de928444b6821d1b663b674a5c", + "createMs": 2167.22, + "connectMs": 182.51, + "taskMs": 5921.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 568.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 433.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 372.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2426.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1179.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 441.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 61.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 176.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 233.46, + "success": true + } + ] + }, + { + "sessionId": "sess_e95d2c5b1e08463393783be69a5d0a82", + "createMs": 2148.71, + "connectMs": 197.66, + "taskMs": 8161.19, + "actionsCompleted": 10, + "actionsPerSecond": 1.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 470.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 478.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 93.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3076, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1451.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1082.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 50.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 325.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 506.35, + "success": true + } + ] + }, + { + "sessionId": "sess_59a0c41be2a74e10bbd81758aa243a17", + "createMs": 1079, + "connectMs": 180.34, + "taskMs": 5120.07, + "actionsCompleted": 10, + "actionsPerSecond": 1.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 258.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 442.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 44.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1672.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1024.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1000.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 270.9, + "success": true + } + ] + }, + { + "sessionId": "sess_15779860b36844dd905963d52ed6423d", + "createMs": 1940.89, + "connectMs": 279.55, + "taskMs": 6246.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 865.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 349.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3236.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 626.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 388.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.05, + "success": true + } + ] + }, + { + "sessionId": "sess_541b877057774ac3a39dc0738da1eddc", + "createMs": 2106.74, + "connectMs": 192.1, + "taskMs": 6605.66, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 723.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 394.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3252.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 854.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 573.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 49.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 128.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.44, + "success": true + } + ] + }, + { + "sessionId": "sess_abae1a727ec548ccae39a49ca8ee44b1", + "createMs": 1730.17, + "connectMs": 229.04, + "taskMs": 6108.25, + "actionsCompleted": 10, + "actionsPerSecond": 1.64, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 418.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 392.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3292.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 416.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 104.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 229.18, + "success": true + } + ] + }, + { + "sessionId": "sess_7b7dcfbae20a4ba5b3d442fcff35e238", + "createMs": 719.78, + "connectMs": 163.87, + "taskMs": 5848.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 282.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 415.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 555.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2687.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 993.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 121.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 331.69, + "success": true + } + ] + }, + { + "sessionId": "sess_53329023aeb540e88674f3f57a135295", + "createMs": 733.01, + "connectMs": 278.64, + "taskMs": 5516.29, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 161.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 292.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2268.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1395.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 607.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 343.42, + "success": true + } + ] + }, + { + "sessionId": "sess_0844ccaee6e241d580c1ee7b5b5f1448", + "createMs": 1841.46, + "connectMs": 283.05, + "taskMs": 6620.81, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 723.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 453.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 446.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 81.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3357.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 874.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.1, + "success": true + } + ] + }, + { + "sessionId": "sess_2d8a0fd398b14a94bdf10bdd28c62309", + "createMs": 1281.62, + "connectMs": 190.38, + "taskMs": 5078.09, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 224.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 259.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 423.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1222.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 830.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1289.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 220.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 254.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 318.73, + "success": true + } + ] + }, + { + "sessionId": "sess_c9dc9d89c5244d1f8b12fa4a885dce30", + "createMs": 1256.61, + "connectMs": 202.68, + "taskMs": 6346.84, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1036.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 306.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 396.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3503.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 536.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 281.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.26, + "success": true + } + ] + }, + { + "sessionId": "sess_a7a7168fdf804b0a82415cc171afd759", + "createMs": 1985.19, + "connectMs": 222.28, + "taskMs": 5516.16, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 467.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 386.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 474.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 41.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2316.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1006.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 376.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 95.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 330.52, + "success": true + } + ] + }, + { + "sessionId": "sess_982c7752d3db480897f3a77ac24f0cb6", + "createMs": 983.26, + "connectMs": 215.55, + "taskMs": 5526.65, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 270.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 558.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1481.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1077.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1293.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 415.5, + "success": true + } + ] + }, + { + "sessionId": "sess_8093ffb0a554408ca71d8306080886fb", + "createMs": 1450.8, + "connectMs": 205.01, + "taskMs": 7451.64, + "actionsCompleted": 10, + "actionsPerSecond": 1.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 869.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 649.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 642.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3124.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 734.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 674.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 193.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 512.93, + "success": true + } + ] + }, + { + "sessionId": "sess_725b055140954b17bb92c717f81a83f4", + "createMs": 1195.62, + "connectMs": 278.39, + "taskMs": 5516.02, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 213.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 250.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 536.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 39.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1239.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1556.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1103.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 59.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 364.04, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 2222.77, + "p95": 2222.77, + "p99": 2222.77, + "samples": 1 + }, + "connectMs": { + "median": 284.32, + "p95": 284.32, + "p99": 284.32, + "samples": 1 + }, + "taskMs": { + "median": 8161.19, + "p95": 8161.19, + "p99": 8161.19, + "samples": 1 + }, + "loopMs": { + "median": 5799.52, + "p95": 6740.42, + "p99": 7906.41, + "samples": 49 + }, + "actionsPerSecond": { + "median": 43.58, + "p95": 43.58, + "p99": 43.58, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.72, + "p95": 1.86, + "p99": 1.95, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 494.01, + "p95": 869.5, + "p99": 1036.16, + "samples": 50 + }, + "waitForSelector": { + "median": 413.91, + "p95": 1179.15, + "p99": 1308.5, + "samples": 148 + }, + "screenshot": { + "median": 469.82, + "p95": 1103.64, + "p99": 1170.45, + "samples": 99 + }, + "textContent": { + "median": 38.95, + "p95": 78.51, + "p99": 91.25, + "samples": 99 + }, + "click": { + "median": 2515.25, + "p95": 3357.76, + "p99": 4002.6, + "samples": 49 + }, + "goBack": { + "median": 121.36, + "p95": 215.28, + "p99": 254.27, + "samples": 49 + } + } + }, + "compositeScore": 78.34, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + } + ] +} \ No newline at end of file diff --git a/results/browser-concurrent/c50/latest.json b/results/browser-concurrent/c50/latest.json new file mode 100644 index 00000000..8b478524 --- /dev/null +++ b/results/browser-concurrent/c50/latest.json @@ -0,0 +1,17698 @@ +{ + "version": "1.0", + "timestamp": "2026-08-18T16:30:42.739Z", + "environment": { + "node": "v24.19.0", + "platform": "linux", + "arch": "x64" + }, + "config": { + "concurrencyLevel": 50, + "rounds": 1, + "actionsPerSession": 10, + "loopsPerSession": 1, + "timeoutMs": 120000 + }, + "results": [ + { + "provider": "browserbase", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 488.75, + "connectMs": 601.28, + "taskMs": 11726.74, + "releaseMs": 860.62, + "totalMs": 13698.77, + "aggregateActionsPerSecond": 42.13, + "sessions": [ + { + "sessionId": "ffede92e-2b37-48f9-abac-776e50d1306d", + "createMs": 437.92, + "connectMs": 365.7, + "taskMs": 2652, + "actionsCompleted": 10, + "actionsPerSecond": 3.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 826.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 345.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 553.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 318.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 274.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.97, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.63, + "success": true + } + ] + }, + { + "sessionId": "5dfebeb4-389b-402c-95a7-82ad1f9d331b", + "createMs": 441.44, + "connectMs": 248.59, + "taskMs": 2022.1, + "actionsCompleted": 10, + "actionsPerSecond": 4.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 653.98, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 83.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 235.21, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 317.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 277.59, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 238.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.81, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.06, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.52, + "success": true + } + ] + }, + { + "sessionId": "663b46ef-6204-481b-b3d1-d6e02990d276", + "createMs": 436.21, + "connectMs": 351.72, + "taskMs": 2702.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 760.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 99.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 257.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 506.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 474.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 51.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 271.03, + "success": true + } + ] + }, + { + "sessionId": "f4294d09-cbf3-417b-8762-f246aebf9225", + "createMs": 447.8, + "connectMs": 265.9, + "taskMs": 3174.34, + "actionsCompleted": 10, + "actionsPerSecond": 3.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 878.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 312.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 558.38, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 554.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 481.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.95, + "success": true + } + ] + }, + { + "sessionId": "b3aaaf30-e27c-494d-9bf9-3dc3166328a3", + "createMs": 429.89, + "connectMs": 245.24, + "taskMs": 2841.94, + "actionsCompleted": 10, + "actionsPerSecond": 3.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 344.22, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.18, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 831.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 228.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 464.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 157.08, + "success": true + } + ] + }, + { + "sessionId": "a0b65d82-39fb-47cb-aa63-fe4a3bb00ab2", + "createMs": 435.85, + "connectMs": 260.46, + "taskMs": 2822.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1037.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 119.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 531.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 189.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 382.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 175.73, + "success": true + } + ] + }, + { + "sessionId": "3a452166-20fb-41af-946e-efb809766151", + "createMs": 461, + "connectMs": 386.45, + "taskMs": 2549.05, + "actionsCompleted": 10, + "actionsPerSecond": 3.92, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 944.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 274.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 512.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 197.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 261.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.95, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.24, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.94, + "success": true + } + ] + }, + { + "sessionId": "1b0e9d42-4872-4646-a928-496a3c12df2d", + "createMs": 487.24, + "connectMs": 297.45, + "taskMs": 2321.2, + "actionsCompleted": 10, + "actionsPerSecond": 4.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 720.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 389.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 238.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 259.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 293.68, + "success": true + } + ] + }, + { + "sessionId": "1ff95034-9829-42c0-9a3c-0aef521a4483", + "createMs": 440.36, + "connectMs": 280.96, + "taskMs": 3255.01, + "actionsCompleted": 10, + "actionsPerSecond": 3.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 921.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 88.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 695.52, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 343.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 545.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 421.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.54, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 172.88, + "success": true + } + ] + }, + { + "sessionId": "ffefa486-46ba-499b-9368-d77a4607ba82", + "createMs": 462.8, + "connectMs": 273.5, + "taskMs": 2646.22, + "actionsCompleted": 10, + "actionsPerSecond": 3.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 543.15, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 258.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 429.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 267.59, + "success": true + } + ] + }, + { + "sessionId": "01cbd521-9464-44e0-9477-9f7fa811c834", + "createMs": 456.16, + "connectMs": 254.23, + "taskMs": 2217.08, + "actionsCompleted": 10, + "actionsPerSecond": 4.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 754.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 85.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 196.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 468.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 211.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 254.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.3, + "success": true + } + ] + }, + { + "sessionId": "2aa957d7-d956-4d4e-8f5d-d25b7c2018de", + "createMs": 480.27, + "connectMs": 417.42, + "taskMs": 2414.65, + "actionsCompleted": 10, + "actionsPerSecond": 4.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 698.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 239.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.67, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 539.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 243.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.23, + "success": true + } + ] + }, + { + "sessionId": "688a032b-12c3-434d-a4c3-73928a10c62c", + "createMs": 479.66, + "connectMs": 600.42, + "taskMs": 3014.69, + "actionsCompleted": 10, + "actionsPerSecond": 3.32, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 686.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 100.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 554.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.87, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 679.73, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 260.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.13, + "success": true + } + ] + }, + { + "sessionId": "04b9350e-e428-4c77-9853-b890435e8ca4", + "createMs": 436.07, + "connectMs": 248.02, + "taskMs": 3617.64, + "actionsCompleted": 10, + "actionsPerSecond": 2.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1762.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 98.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 242.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 423.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 297.77, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 497.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.02, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 240.07, + "success": true + } + ] + }, + { + "sessionId": "0ff09a6e-2b05-4404-a2b1-4d0e66d69032", + "createMs": 456.19, + "connectMs": 362.41, + "taskMs": 2706.32, + "actionsCompleted": 10, + "actionsPerSecond": 3.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 862.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 307.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 485.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 327.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.56, + "success": true + } + ] + }, + { + "sessionId": "fcf86a6a-6581-4b5b-9c38-cdfe0554d42d", + "createMs": 441.96, + "connectMs": 252.37, + "taskMs": 3329.21, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 977.2, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 124.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 353.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 571.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 637, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 246.94, + "success": true + } + ] + }, + { + "sessionId": "e1be5d78-6ede-4f3d-b25b-07fdde0174c0", + "createMs": 448.43, + "connectMs": 260.51, + "taskMs": 2830.97, + "actionsCompleted": 10, + "actionsPerSecond": 3.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 921.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 89.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 602.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 240.57, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.05, + "success": true + } + ] + }, + { + "sessionId": "b6a1ce9d-6f41-4343-bfe8-45aa2ac8fbeb", + "createMs": 436.01, + "connectMs": 239.83, + "taskMs": 2933.38, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 979.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 373.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 464.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 457.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 230.46, + "success": true + } + ] + }, + { + "sessionId": "01eeff79-4636-4ff7-b437-00edf4ee5058", + "createMs": 435.83, + "connectMs": 249.11, + "taskMs": 2331.84, + "actionsCompleted": 10, + "actionsPerSecond": 4.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 680.97, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 82.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 244.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.28, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 374.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 349.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 341.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.86, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 202.44, + "success": true + } + ] + }, + { + "sessionId": "3bd5d38d-5018-4557-8406-5d582272449d", + "createMs": 436.01, + "connectMs": 236.68, + "taskMs": 3068.25, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 919.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 94.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 316.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 528.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.32, + "success": true + } + ] + }, + { + "sessionId": "090c1301-756a-491f-901a-09734fb7c069", + "createMs": 474.4, + "connectMs": 285.31, + "taskMs": 2961.79, + "actionsCompleted": 10, + "actionsPerSecond": 3.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 974.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 107.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 290.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.98, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 272.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 626.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.6, + "success": true + } + ] + }, + { + "sessionId": "b20f9743-e8fe-4256-86ae-9dd71c55e3d8", + "createMs": 470.62, + "connectMs": 289, + "taskMs": 3123.72, + "actionsCompleted": 10, + "actionsPerSecond": 3.2, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 623.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 328.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 394.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.8, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 677.53, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 367.71, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 192.02, + "success": true + } + ] + }, + { + "sessionId": "aaa5aa70-17fb-4166-aea8-9974fd568b0f", + "createMs": 435.76, + "connectMs": 236.32, + "taskMs": 2696, + "actionsCompleted": 10, + "actionsPerSecond": 3.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 447.67, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 641.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 427.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 366.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.23, + "success": true + } + ] + }, + { + "sessionId": "cd611138-8e75-4c45-ba0e-c66fd2f21989", + "createMs": 435.85, + "connectMs": 234.68, + "taskMs": 11724.7, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 983.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 331.11, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10005.42, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "1efe86c6-32da-4a2a-8cad-3c63e95fac53", + "createMs": 456.18, + "connectMs": 261.58, + "taskMs": 3353.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1029.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 145.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 455.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 305.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 39.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 583.34, + "success": true + } + ] + }, + { + "sessionId": "82d05d95-7217-482e-990f-f221d469a381", + "createMs": 447.84, + "connectMs": 281.23, + "taskMs": 2799.27, + "actionsCompleted": 10, + "actionsPerSecond": 3.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 981.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 108.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 341.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.73, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 480.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 387.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 247.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 179.72, + "success": true + } + ] + }, + { + "sessionId": "10659c71-58de-4ca8-afcb-366428d8564d", + "createMs": 456.72, + "connectMs": 265.2, + "taskMs": 2542.92, + "actionsCompleted": 10, + "actionsPerSecond": 3.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 717.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 204.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 388.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 624.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 301.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 170.01, + "success": true + } + ] + }, + { + "sessionId": "d47031d8-4695-45d4-8d05-3309c113a67f", + "createMs": 435.82, + "connectMs": 234.78, + "taskMs": 3070.04, + "actionsCompleted": 10, + "actionsPerSecond": 3.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1220.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 115.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.6, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 453.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 351.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 285.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.52, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 266.35, + "success": true + } + ] + }, + { + "sessionId": "40044bb2-d947-4ae7-b9ac-07defbcc94c7", + "createMs": 469.41, + "connectMs": 372.88, + "taskMs": 2925.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 774.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 116.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 569.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 458.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.71, + "success": true + } + ] + }, + { + "sessionId": "99ce7edf-7afb-4451-b3ca-bea1de7a450a", + "createMs": 436.39, + "connectMs": 251.33, + "taskMs": 2931.34, + "actionsCompleted": 10, + "actionsPerSecond": 3.41, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 924.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 75.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 250.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 809.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 403.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 234.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.74, + "success": true + } + ] + }, + { + "sessionId": "e9c4724d-474e-4a54-815c-c4163a590fe1", + "createMs": 472.36, + "connectMs": 298.4, + "taskMs": 2758.87, + "actionsCompleted": 10, + "actionsPerSecond": 3.62, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 885.78, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 93.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 275.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 498.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 347.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 351.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 225.83, + "success": true + } + ] + }, + { + "sessionId": "118cc726-0626-4bf0-bc25-d59fc467f1e1", + "createMs": 456.19, + "connectMs": 258.01, + "taskMs": 3605.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.77, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1816.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 104.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 318.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 353.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 158.19, + "success": true + } + ] + }, + { + "sessionId": "4bb723e8-48e7-43fa-9907-6b505d458e18", + "createMs": 478.87, + "connectMs": 282.99, + "taskMs": 2413.83, + "actionsCompleted": 10, + "actionsPerSecond": 4.14, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 648.49, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 102.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 298.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 567.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 244.02, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 308.6, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.22, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.4, + "success": true + } + ] + }, + { + "sessionId": "a8c006ee-5598-4b26-9b63-233e8df9449d", + "createMs": 435.93, + "connectMs": 250.84, + "taskMs": 2730.56, + "actionsCompleted": 10, + "actionsPerSecond": 3.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 855.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 79.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 546.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 400.36, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.49, + "success": true + } + ] + }, + { + "sessionId": "465ff2ce-f11e-4cb9-981d-7073c4c6f7a2", + "createMs": 437.35, + "connectMs": 265.7, + "taskMs": 2472.26, + "actionsCompleted": 10, + "actionsPerSecond": 4.04, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 726.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 90.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 507.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 393.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 223.06, + "success": true + } + ] + }, + { + "sessionId": "b9455676-bbd2-49ae-a84e-36a554179f21", + "createMs": 444.02, + "connectMs": 266.18, + "taskMs": 2862.33, + "actionsCompleted": 10, + "actionsPerSecond": 3.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 81.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 285.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 483.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 689.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 327.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 40.92, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 247.26, + "success": true + } + ] + }, + { + "sessionId": "6e1aec6f-5c23-4a57-97fd-969548898367", + "createMs": 475.37, + "connectMs": 381.97, + "taskMs": 3274.77, + "actionsCompleted": 10, + "actionsPerSecond": 3.05, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 948.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 267.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 7.92, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 474.03, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 478.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.63, + "success": true + } + ] + }, + { + "sessionId": "3c947b97-4eb2-463c-b0a9-4a1b21b549d3", + "createMs": 448.78, + "connectMs": 355.76, + "taskMs": 2623.1, + "actionsCompleted": 10, + "actionsPerSecond": 3.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 913.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 72.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 246.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 17.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 743.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 187.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 226.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.14, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.39, + "success": true + } + ] + }, + { + "sessionId": "900f036c-abe2-4e3e-8015-0e39d0caf4df", + "createMs": 470.8, + "connectMs": 283.28, + "taskMs": 2968.07, + "actionsCompleted": 10, + "actionsPerSecond": 3.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1105.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.13, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 363.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 445.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 341.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.08, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.21, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 155.53, + "success": true + } + ] + }, + { + "sessionId": "aa7fb543-4c29-4316-a5d3-c99f5bb98165", + "createMs": 447.7, + "connectMs": 280.43, + "taskMs": 3093.42, + "actionsCompleted": 10, + "actionsPerSecond": 3.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 923.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 87.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 304.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 561.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 452.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 489.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 180.71, + "success": true + } + ] + }, + { + "sessionId": "125760d1-f6fd-4d2d-a189-e9692a041484", + "createMs": 445.71, + "connectMs": 278.44, + "taskMs": 3351.8, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1069.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 158.83, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 459.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 648.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 396.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 326.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.08, + "success": true + } + ] + }, + { + "sessionId": "afc76d4d-c268-4e8c-887f-da7b47a3ac41", + "createMs": 474.96, + "connectMs": 299.71, + "taskMs": 2743.31, + "actionsCompleted": 10, + "actionsPerSecond": 3.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 567.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 244.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 216.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 612.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 543.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 351.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 156.41, + "success": true + } + ] + }, + { + "sessionId": "a53b950c-389a-41a5-b9c7-342b97bce53f", + "createMs": 448.38, + "connectMs": 272.95, + "taskMs": 3336.23, + "actionsCompleted": 10, + "actionsPerSecond": 3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 911.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 91.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.68, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 635.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 818.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 8.11, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 237.32, + "success": true + } + ] + }, + { + "sessionId": "195a2f4a-022a-4f76-8f26-66c9c78260e2", + "createMs": 444.67, + "connectMs": 251.47, + "taskMs": 2679.84, + "actionsCompleted": 10, + "actionsPerSecond": 3.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 650.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 73.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 270.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.54, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 390.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 593.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 361.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 226.42, + "success": true + } + ] + }, + { + "sessionId": "e146aab6-2afb-467a-82b0-10fdcdb9c5f3", + "createMs": 456.24, + "connectMs": 259.45, + "taskMs": 2823.19, + "actionsCompleted": 10, + "actionsPerSecond": 3.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 836.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 97.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 632.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.12, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 389.48, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 319.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 280.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 32.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 205.93, + "success": true + } + ] + }, + { + "sessionId": "ed82d671-9565-469d-a801-422c2d9d7464", + "createMs": 435.95, + "connectMs": 465.8, + "taskMs": 3528.7, + "actionsCompleted": 10, + "actionsPerSecond": 2.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1589.03, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 139.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 355.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 6.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 575.61, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 255.84, + "success": true + } + ] + }, + { + "sessionId": "347d3e5e-fa41-4fdc-bc8b-e897564b60f5", + "createMs": 456.12, + "connectMs": 282.23, + "taskMs": 2785.43, + "actionsCompleted": 10, + "actionsPerSecond": 3.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 952.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 113.97, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 266.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 662.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 220.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 296.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.54, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.31, + "success": true + } + ] + }, + { + "sessionId": "55d48f3a-6087-4234-96f9-e4c2032dcc14", + "createMs": 445.18, + "connectMs": 278.45, + "taskMs": 3002.75, + "actionsCompleted": 10, + "actionsPerSecond": 3.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1101.65, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 135.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.22, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 526.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 206.89, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 373.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.51, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.95, + "success": true + } + ] + }, + { + "sessionId": "2fdd6741-5a9a-44bc-9bc6-3a1d31692de3", + "createMs": 478.01, + "connectMs": 295.35, + "taskMs": 3447.65, + "actionsCompleted": 10, + "actionsPerSecond": 2.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1634.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 132.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 299.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 8.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 293.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 37.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.29, + "success": true + } + ] + }, + { + "sessionId": "12d9faeb-6f4a-451e-a07a-f7df711bed7f", + "createMs": 460.14, + "connectMs": 278.15, + "taskMs": 3219.97, + "actionsCompleted": 10, + "actionsPerSecond": 3.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1616.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 133.36, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 240.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 274.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 465.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 232.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 6.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.06, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 488.75, + "p95": 488.75, + "p99": 488.75, + "samples": 1 + }, + "connectMs": { + "median": 601.28, + "p95": 601.28, + "p99": 601.28, + "samples": 1 + }, + "taskMs": { + "median": 3617.64, + "p95": 3617.64, + "p99": 3617.64, + "samples": 1 + }, + "loopMs": { + "median": 2841.94, + "p95": 3353.97, + "p99": 3528.7, + "samples": 49 + }, + "actionsPerSecond": { + "median": 42.13, + "p95": 42.13, + "p99": 42.13, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 3.51, + "p95": 4.14, + "p99": 4.31, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 912.66, + "p95": 1589.03, + "p99": 1634.75, + "samples": 50 + }, + "waitForSelector": { + "median": 200.11, + "p95": 465.45, + "p99": 545.73, + "samples": 148 + }, + "screenshot": { + "median": 308.6, + "p95": 478.08, + "p99": 554.87, + "samples": 99 + }, + "textContent": { + "median": 8.67, + "p95": 24.14, + "p99": 27.8, + "samples": 99 + }, + "click": { + "median": 506.4, + "p95": 677.53, + "p99": 743.72, + "samples": 49 + }, + "goBack": { + "median": 42.17, + "p95": 65.74, + "p99": 69.4, + "samples": 49 + } + } + }, + "compositeScore": 86.5, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "browseruse", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 587.13, + "connectMs": 1018.61, + "taskMs": 11147.96, + "releaseMs": 147.91, + "totalMs": 12968.5, + "aggregateActionsPerSecond": 44.31, + "sessions": [ + { + "sessionId": "ad43bee3-5549-44d1-80ea-8f8b2e2a4604", + "createMs": 337.23, + "connectMs": 137.05, + "taskMs": 3601.68, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 658.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 233.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 28.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1590.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 299.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 217.75, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.58, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 168.05, + "success": true + } + ] + }, + { + "sessionId": "20a842fd-06d7-4a73-8f82-c31c4669981d", + "createMs": 307.03, + "connectMs": 151.09, + "taskMs": 3526.61, + "actionsCompleted": 10, + "actionsPerSecond": 2.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 684.71, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 240.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 308.05, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1491.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 279.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 284.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.4, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 141.1, + "success": true + } + ] + }, + { + "sessionId": "948176b7-8568-4069-8aa3-79d96e838d2f", + "createMs": 326.57, + "connectMs": 212.58, + "taskMs": 3803.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.29, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 303, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 314.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1607.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 382.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 264.52, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 72.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.2, + "success": true + } + ] + }, + { + "sessionId": "67b281c3-458d-43ca-b816-c88963f78e14", + "createMs": 298.14, + "connectMs": 230.2, + "taskMs": 4511.69, + "actionsCompleted": 10, + "actionsPerSecond": 2.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 778.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 442.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 133.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1393.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 809.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 403.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.71, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.32, + "success": true + } + ] + }, + { + "sessionId": "9b39be3a-32c6-4eb5-950f-74eb187aa2ec", + "createMs": 465.55, + "connectMs": 230.9, + "taskMs": 4281.8, + "actionsCompleted": 10, + "actionsPerSecond": 2.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 647.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 280.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 376.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1950.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 431.73, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 302.84, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.9, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.09, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.68, + "success": true + } + ] + }, + { + "sessionId": "1b7ca216-be4a-442e-98cc-68dd8036e126", + "createMs": 553.46, + "connectMs": 249.3, + "taskMs": 3623.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 607.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 276.31, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.74, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1635.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 340.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 175.66, + "success": true + } + ] + }, + { + "sessionId": "8b25426b-d3c9-40c0-b1be-a2cd6792850c", + "createMs": 284.53, + "connectMs": 240.73, + "taskMs": 3432.03, + "actionsCompleted": 10, + "actionsPerSecond": 2.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 607.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 300.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1571.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 271.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 216.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.77, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 140.37, + "success": true + } + ] + }, + { + "sessionId": "579e15e1-aa11-45d3-a845-b012d5df3c66", + "createMs": 268.39, + "connectMs": 298.95, + "taskMs": 3646.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 628.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 303.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 312.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1561.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 282.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 230.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 219.15, + "success": true + } + ] + }, + { + "sessionId": "4c141703-9478-44a1-8cd0-643145ad4446", + "createMs": 425.06, + "connectMs": 315.8, + "taskMs": 4348.87, + "actionsCompleted": 10, + "actionsPerSecond": 2.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 719.51, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 290.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 408.98, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1439, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 331.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.78, + "success": true + } + ] + }, + { + "sessionId": "d8785462-17a4-4e45-bda7-f9d0cb98fc03", + "createMs": 275, + "connectMs": 297.64, + "taskMs": 3759.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.66, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 646.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 249.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 255.44, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1539.87, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 529.76, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.29, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.67, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.31, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 154.01, + "success": true + } + ] + }, + { + "sessionId": "a03c396a-023c-4723-8fa0-fe4b604d980c", + "createMs": 351.14, + "connectMs": 339.72, + "taskMs": 3699.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 764.33, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 279.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 308.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 66.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1474.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 311.84, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 236.56, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 181.27, + "success": true + } + ] + }, + { + "sessionId": "377c2c6a-94fb-4ce7-9430-7bd58d0bef11", + "createMs": 546.08, + "connectMs": 324.15, + "taskMs": 3532.03, + "actionsCompleted": 10, + "actionsPerSecond": 2.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 261.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1553.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 371.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 260.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 160.65, + "success": true + } + ] + }, + { + "sessionId": "848da5d6-eeef-4e7d-af82-6f2fa63d229c", + "createMs": 311.45, + "connectMs": 344.97, + "taskMs": 3600.6, + "actionsCompleted": 10, + "actionsPerSecond": 2.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 674.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 245.87, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 318.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1500.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 306.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 289.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 49.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 167.83, + "success": true + } + ] + }, + { + "sessionId": "06740d93-4184-44d7-80e0-31a2ff66cfb9", + "createMs": 359.54, + "connectMs": 405.56, + "taskMs": 3960.94, + "actionsCompleted": 10, + "actionsPerSecond": 2.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 667.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 307.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1593.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 463.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 317.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.06, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + } + ] + }, + { + "sessionId": "b096e079-0f91-4d90-96c2-2e39c23d46f3", + "createMs": 368.8, + "connectMs": 371.13, + "taskMs": 3353.56, + "actionsCompleted": 10, + "actionsPerSecond": 2.98, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 496.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 288.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1554.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 284.23, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 240.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 147.83, + "success": true + } + ] + }, + { + "sessionId": "af9bb83f-e617-4980-a0f1-bdf421689d0c", + "createMs": 377.49, + "connectMs": 380.31, + "taskMs": 4237.53, + "actionsCompleted": 10, + "actionsPerSecond": 2.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 759.23, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 224.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 323.23, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1757.4, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 514.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 357.1, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 44.08, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 194.29, + "success": true + } + ] + }, + { + "sessionId": "3543d3cc-2b20-467b-ae4a-63145aabb808", + "createMs": 300.69, + "connectMs": 454.97, + "taskMs": 3998.73, + "actionsCompleted": 10, + "actionsPerSecond": 2.5, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 709.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.1, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 334.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 64.79, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1617.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 342.14, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 339.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.37, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 205.23, + "success": true + } + ] + }, + { + "sessionId": "0bb3f0b7-9a02-47a0-8cc5-cfbe6b140d72", + "createMs": 286.2, + "connectMs": 422.55, + "taskMs": 3697.22, + "actionsCompleted": 10, + "actionsPerSecond": 2.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 606.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 295.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1588.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 501.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.49, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.06, + "success": true + } + ] + }, + { + "sessionId": "795f4523-eda1-4f18-8903-1595e515617e", + "createMs": 406.61, + "connectMs": 483.28, + "taskMs": 3933.98, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 554.14, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 283.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 321.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1662.63, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 484.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 63.19, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.31, + "success": true + } + ] + }, + { + "sessionId": "8a7fe5be-6cbc-4446-8a27-5a1cd48a4328", + "createMs": 456.83, + "connectMs": 509.76, + "taskMs": 4250.24, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 657.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 307.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 388.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1532.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 589.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 435.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.61, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 187.7, + "success": true + } + ] + }, + { + "sessionId": "596f8fd9-cb90-4405-8980-4798fe18b86c", + "createMs": 277.74, + "connectMs": 504.18, + "taskMs": 3952.36, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 486.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 323.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 332.97, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1594.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 419.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 502.07, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 54.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.07, + "success": true + } + ] + }, + { + "sessionId": "2d47a12c-d641-4054-b25c-bba1a91ad9c0", + "createMs": 462.78, + "connectMs": 540.1, + "taskMs": 4117.62, + "actionsCompleted": 10, + "actionsPerSecond": 2.43, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 556.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 290.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 325.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 59.56, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1765.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 468.01, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.18, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 64.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 249.74, + "success": true + } + ] + }, + { + "sessionId": "01da22ad-da90-4d15-ad82-9134c53384ae", + "createMs": 554.93, + "connectMs": 546.39, + "taskMs": 4131.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.42, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 912, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 255.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 563.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 158.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1123.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.66, + "success": true + } + ] + }, + { + "sessionId": "d3d1fa79-8aaf-4e7d-8443-89946ed32f3e", + "createMs": 585.42, + "connectMs": 550.23, + "taskMs": 11143.74, + "actionsCompleted": 4, + "actionsPerSecond": 0.36, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 536.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 278.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 303.85, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10002.36, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 21 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "c412be52-0ba7-4c9f-b1ac-f9144032229f", + "createMs": 257.14, + "connectMs": 535.35, + "taskMs": 3798.45, + "actionsCompleted": 10, + "actionsPerSecond": 2.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 882.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 272.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 106.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1494.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 336.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 262.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 36.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 152.8, + "success": true + } + ] + }, + { + "sessionId": "0aa826ff-37f1-4a5b-bee3-529a3b4373ab", + "createMs": 266.07, + "connectMs": 849.4, + "taskMs": 3494.7, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 656.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 291.3, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 226.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1479.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 343.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 47.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 121.48, + "success": true + } + ] + }, + { + "sessionId": "bf84bd1c-099a-41eb-80f0-7c35d256aa32", + "createMs": 296.2, + "connectMs": 627.01, + "taskMs": 4258.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 639.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 316.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.88, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1567.91, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 819.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 314.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.39, + "success": true + } + ] + }, + { + "sessionId": "b41ed821-16dc-4e88-b5c2-0004767fe3cf", + "createMs": 417.83, + "connectMs": 639.91, + "taskMs": 3949.18, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 747.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 301.63, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 455.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 131.78, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1392.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 350.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 275.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.88, + "success": true + } + ] + }, + { + "sessionId": "22cd176e-b89a-4895-90c0-61e5f4204820", + "createMs": 292.5, + "connectMs": 661.05, + "taskMs": 4186.57, + "actionsCompleted": 10, + "actionsPerSecond": 2.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.39, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 113.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1536.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 439.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 319.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 79.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.8, + "success": true + } + ] + }, + { + "sessionId": "4ef15c09-663f-4aac-9e93-4c5a296d7343", + "createMs": 405.68, + "connectMs": 663.75, + "taskMs": 4459.61, + "actionsCompleted": 10, + "actionsPerSecond": 2.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 325.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2156.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 519.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 249.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 56.79, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.82, + "success": true + } + ] + }, + { + "sessionId": "3ed92403-b0cf-4bee-a606-ccb344d16869", + "createMs": 330.81, + "connectMs": 643.04, + "taskMs": 3561.02, + "actionsCompleted": 10, + "actionsPerSecond": 2.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 568.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 235.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 277.62, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1462.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.94, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 288.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 41.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.7, + "success": true + } + ] + }, + { + "sessionId": "2a5df7e1-50e6-4181-8fe4-714b3a9e98a8", + "createMs": 425.12, + "connectMs": 712.18, + "taskMs": 4716.48, + "actionsCompleted": 10, + "actionsPerSecond": 2.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 733.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 289.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 132.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1859.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 311.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 57.25, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 188.08, + "success": true + } + ] + }, + { + "sessionId": "8e1da44a-4870-4b60-bddc-b238ce443cfd", + "createMs": 462.03, + "connectMs": 719.44, + "taskMs": 4227.67, + "actionsCompleted": 10, + "actionsPerSecond": 2.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 826.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 269, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 407.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 133.06, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1511.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 325.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 377.33, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 64.34, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 84.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.69, + "success": true + } + ] + }, + { + "sessionId": "2b3cd565-e671-4ad6-bf8e-793054caa78c", + "createMs": 416.5, + "connectMs": 702.09, + "taskMs": 3843.11, + "actionsCompleted": 10, + "actionsPerSecond": 2.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 683.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 223.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 259.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1608.54, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 535.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 271.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 142.15, + "success": true + } + ] + }, + { + "sessionId": "078ccaa5-062b-4732-86c1-dd247eb8b0fc", + "createMs": 524.68, + "connectMs": 723.27, + "taskMs": 3748.67, + "actionsCompleted": 10, + "actionsPerSecond": 2.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 693.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 225.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 233.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 22.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1692.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 383.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 268.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.71, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 149.59, + "success": true + } + ] + }, + { + "sessionId": "5a1eee09-d912-4a26-8ed6-c9f9e4baa070", + "createMs": 344.26, + "connectMs": 740.19, + "taskMs": 4192.66, + "actionsCompleted": 10, + "actionsPerSecond": 2.39, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 655.58, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 235.93, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 280.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 58.53, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1569.88, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 757.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.17, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.22, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.35, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 165.11, + "success": true + } + ] + }, + { + "sessionId": "386ee54d-0ec0-4a1e-828b-7122074481b8", + "createMs": 360.49, + "connectMs": 796.3, + "taskMs": 4577.93, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 707.13, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 359.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 108.36, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1446.09, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 855.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 533.19, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.41, + "success": true + } + ] + }, + { + "sessionId": "45e9787f-2157-47d1-80fe-3aeafe417052", + "createMs": 565.76, + "connectMs": 757.46, + "taskMs": 3954.97, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 772.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 221.57, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 302.61, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1834.08, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 319.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 235.61, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 38.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 161.15, + "success": true + } + ] + }, + { + "sessionId": "93a04ea6-d62a-4597-8197-b0d64d3cec9b", + "createMs": 315.75, + "connectMs": 832.42, + "taskMs": 4214.34, + "actionsCompleted": 10, + "actionsPerSecond": 2.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 605.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 295.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 278.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 53.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2070.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 348.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 303.27, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 61.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 174.73, + "success": true + } + ] + }, + { + "sessionId": "44a6a4c5-3309-4ebe-9b1e-5b67b4d79152", + "createMs": 288.71, + "connectMs": 815.13, + "taskMs": 4018.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 254.38, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 297.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 52.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1588.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 687.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.35, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.38, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 48.82, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 166.77, + "success": true + } + ] + }, + { + "sessionId": "3fc798a8-c8e1-4ecf-8e59-1df40496fed0", + "createMs": 319.82, + "connectMs": 825.49, + "taskMs": 3946.45, + "actionsCompleted": 10, + "actionsPerSecond": 2.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 815.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 214.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 601.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 149.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1194.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 354.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 382.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.99, + "success": true + } + ] + }, + { + "sessionId": "d16b7877-3e63-4c4d-80f7-51cc8e792fac", + "createMs": 348.1, + "connectMs": 829.36, + "taskMs": 4209.58, + "actionsCompleted": 10, + "actionsPerSecond": 2.38, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 717.89, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 225.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 217.48, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1772.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 822.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 228.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 45.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 143.26, + "success": true + } + ] + }, + { + "sessionId": "68cd94fe-e19a-452f-9932-8b406823fd99", + "createMs": 369.39, + "connectMs": 859.35, + "taskMs": 4586.36, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 693.41, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 300.52, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 264.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 27.97, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1760.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 736.17, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 577.76, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 53.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 151.35, + "success": true + } + ] + }, + { + "sessionId": "142b98ba-ad7b-4c52-aff6-4c1e515cac40", + "createMs": 317.98, + "connectMs": 925.55, + "taskMs": 4590.9, + "actionsCompleted": 10, + "actionsPerSecond": 2.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 725.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 282.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 766.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 177.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1176.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 734.08, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.05, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 26.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 173.52, + "success": true + } + ] + }, + { + "sessionId": "a4ab962d-d18c-43fc-b569-4a1cf8996748", + "createMs": 445.06, + "connectMs": 941.64, + "taskMs": 3935.75, + "actionsCompleted": 10, + "actionsPerSecond": 2.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 725.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 327.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 451.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 131.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1342.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 295.78, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216, + "success": true + } + ] + }, + { + "sessionId": "cd9a15a7-5c3c-4738-9053-42f598aa1dfb", + "createMs": 336.81, + "connectMs": 883.94, + "taskMs": 3653.28, + "actionsCompleted": 10, + "actionsPerSecond": 2.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 645.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 222.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 306.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.89, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1570.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 467, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 222.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.24, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 120.79, + "success": true + } + ] + }, + { + "sessionId": "1886386b-c3a6-4160-9163-fac47ee7fe2b", + "createMs": 304.55, + "connectMs": 969.92, + "taskMs": 3961.18, + "actionsCompleted": 10, + "actionsPerSecond": 2.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 752.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 294.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 369.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.61, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1619.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 291.22, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 252.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 55.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 212.74, + "success": true + } + ] + }, + { + "sessionId": "33dbe806-ade8-4a89-91c2-f690e12a8849", + "createMs": 264.95, + "connectMs": 987.31, + "taskMs": 4019.41, + "actionsCompleted": 10, + "actionsPerSecond": 2.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 706.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 267.68, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 376.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 63.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1621.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 365.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 332.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 52.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 207.13, + "success": true + } + ] + }, + { + "sessionId": "8867d582-eca6-4cae-909a-b80aa987a44e", + "createMs": 283.02, + "connectMs": 1015.03, + "taskMs": 4625.68, + "actionsCompleted": 10, + "actionsPerSecond": 2.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 821.02, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 280.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 721.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 160.17, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1436.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 539.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 390.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 58.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.36, + "success": true + } + ] + }, + { + "sessionId": "946f88a7-7522-4b1f-b6a0-c9493bbb87d8", + "createMs": 397.47, + "connectMs": 962.76, + "taskMs": 3725.13, + "actionsCompleted": 10, + "actionsPerSecond": 2.68, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 738.62, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 216.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 227.32, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 48.37, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1438.31, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 603.34, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 242.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 127.73, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 587.13, + "p95": 587.13, + "p99": 587.13, + "samples": 1 + }, + "connectMs": { + "median": 1018.61, + "p95": 1018.61, + "p99": 1018.61, + "samples": 1 + }, + "taskMs": { + "median": 4716.48, + "p95": 4716.48, + "p99": 4716.48, + "samples": 1 + }, + "loopMs": { + "median": 3954.97, + "p95": 4577.93, + "p99": 4590.9, + "samples": 49 + }, + "actionsPerSecond": { + "median": 44.31, + "p95": 44.31, + "p99": 44.31, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.53, + "p95": 2.83, + "p99": 2.86, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 678.98, + "p95": 815.62, + "p99": 826.61, + "samples": 50 + }, + "waitForSelector": { + "median": 278.66, + "p95": 535.48, + "p99": 687.55, + "samples": 148 + }, + "screenshot": { + "median": 306.92, + "p95": 469.05, + "p99": 563.93, + "samples": 99 + }, + "textContent": { + "median": 25.06, + "p95": 131.69, + "p99": 133.9, + "samples": 99 + }, + "click": { + "median": 1569.88, + "p95": 1834.08, + "p99": 1950.04, + "samples": 49 + }, + "goBack": { + "median": 54.31, + "p95": 65.81, + "p99": 72.09, + "samples": 49 + } + } + }, + "compositeScore": 83.73, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "hyperbrowser", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 1152.96, + "connectMs": 329.61, + "taskMs": 11892.14, + "releaseMs": 328.2, + "totalMs": 13752.59, + "aggregateActionsPerSecond": 41.54, + "sessions": [ + { + "sessionId": "8b188338-fbd2-4867-9be0-268963645c9c", + "createMs": 1096.76, + "connectMs": 236.63, + "taskMs": 5755.38, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1301.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 228.71, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 450.03, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2669.24, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 352.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 410.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.79, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 163.88, + "success": true + } + ] + }, + { + "sessionId": "1133b92c-5a1c-4ad6-a298-4367d00554f6", + "createMs": 860.34, + "connectMs": 236.72, + "taskMs": 4438.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 563.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 704.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 468.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1226.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 640.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 400.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 154.12, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 252.73, + "success": true + } + ] + }, + { + "sessionId": "a2d3e1b8-cfe3-4f98-94b4-604ec8f71e70", + "createMs": 555.2, + "connectMs": 209.99, + "taskMs": 4837.3, + "actionsCompleted": 10, + "actionsPerSecond": 2.07, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1246.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 470.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.33, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1335.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 961.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.06, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 162.93, + "success": true + } + ] + }, + { + "sessionId": "9219c511-b2f2-455c-b4c3-9ed4935d0c2b", + "createMs": 1046.32, + "connectMs": 235.26, + "taskMs": 7142.32, + "actionsCompleted": 10, + "actionsPerSecond": 1.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1370.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 438.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 90.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2732.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 955.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1025.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.96, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 148.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 169.52, + "success": true + } + ] + }, + { + "sessionId": "a804698a-a4d3-44c4-8660-8524be76b57b", + "createMs": 975.83, + "connectMs": 218, + "taskMs": 5081.63, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1208.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 169.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 546.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1648.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 769.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 422.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.72, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 142.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.63, + "success": true + } + ] + }, + { + "sessionId": "6e915cc1-3056-47aa-87a5-99dea4421e3b", + "createMs": 856.59, + "connectMs": 238.13, + "taskMs": 3690.59, + "actionsCompleted": 10, + "actionsPerSecond": 2.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 970.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 162.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 456.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.29, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 649.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 593.49, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 406.04, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 28.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 110.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 297.52, + "success": true + } + ] + }, + { + "sessionId": "874c698f-6072-41c7-99c6-ca89231c67e1", + "createMs": 982.26, + "connectMs": 240.37, + "taskMs": 4491.81, + "actionsCompleted": 10, + "actionsPerSecond": 2.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1139.81, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 172.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 486.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1219.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 704.91, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 340.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.84, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 274.03, + "success": true + } + ] + }, + { + "sessionId": "942d102a-c6c7-41f1-8c7c-173841e85f46", + "createMs": 482.1, + "connectMs": 223.35, + "taskMs": 7149.22, + "actionsCompleted": 10, + "actionsPerSecond": 1.4, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1215.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 182.29, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4159.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 439.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 448.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 355.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 209.58, + "success": true + } + ] + }, + { + "sessionId": "9395333c-b7f8-4c4b-ac61-ab462d32b53a", + "createMs": 463.29, + "connectMs": 230.42, + "taskMs": 6329.76, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1256.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 170.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 614.42, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1760.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1422.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 592.23, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 184.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 249.74, + "success": true + } + ] + }, + { + "sessionId": "b04c1f02-2885-4285-84e6-3a970620b606", + "createMs": 434.23, + "connectMs": 238.1, + "taskMs": 5694.03, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1175.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 181.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 505.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2423.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 577.05, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 415.67, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.83, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.27, + "success": true + } + ] + }, + { + "sessionId": "5131409c-a20d-4af9-a6e9-f3dccac7998b", + "createMs": 1084.93, + "connectMs": 248.54, + "taskMs": 3490.76, + "actionsCompleted": 10, + "actionsPerSecond": 2.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 961.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 170.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 435.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 630.06, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 580.25, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 365.87, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.2, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 81.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 235.97, + "success": true + } + ] + }, + { + "sessionId": "5c466158-7836-400c-be4d-0fbd0da922f4", + "createMs": 407.82, + "connectMs": 234.28, + "taskMs": 6146.6, + "actionsCompleted": 10, + "actionsPerSecond": 1.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1252.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 171.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 468.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2863.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 504.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 498.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 159.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 200.62, + "success": true + } + ] + }, + { + "sessionId": "a1f985dc-27e2-4cf2-a8ab-d05fc0c55d20", + "createMs": 871.4, + "connectMs": 229.26, + "taskMs": 5221.95, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1202.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 208.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 545.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 21.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1747.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 594.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 499.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.82, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 242.46, + "success": true + } + ] + }, + { + "sessionId": "1db438c8-4ea4-4019-98fc-ad91ab175fc5", + "createMs": 995.73, + "connectMs": 249.96, + "taskMs": 6329.5, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1291.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 202.44, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 432.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2860.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 639.72, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 449.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 260.33, + "success": true + } + ] + }, + { + "sessionId": "8b66a670-f8c9-42e9-9ddb-df1f1471b77d", + "createMs": 932.74, + "connectMs": 247.57, + "taskMs": 4954.71, + "actionsCompleted": 10, + "actionsPerSecond": 2.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1161.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 186.4, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 411.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.82, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1594, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 821.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 395.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.31, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 206.98, + "success": true + } + ] + }, + { + "sessionId": "b61078b4-93c2-4f9d-af0d-13c2b5c935f7", + "createMs": 1003.25, + "connectMs": 251.82, + "taskMs": 8042.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 736.15, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 607.33, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4335.36, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.31, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 752.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 723.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 562.96, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.92, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 126.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 171.61, + "success": true + } + ] + }, + { + "sessionId": "d678a8c6-bd00-4ce8-95eb-6b24ddc014f6", + "createMs": 1128.43, + "connectMs": 246.67, + "taskMs": 5410.34, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1428.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 406.92, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 88.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1962.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 472.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 437.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 170.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 265.96, + "success": true + } + ] + }, + { + "sessionId": "7a72df16-26bf-420d-94a9-4d50414307a0", + "createMs": 474.66, + "connectMs": 264.8, + "taskMs": 7408.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1231.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 173.61, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4161.55, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 529.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 539.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 392.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 36.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 124.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.59, + "success": true + } + ] + }, + { + "sessionId": "8639b8ae-b9b5-43ab-a5bd-aa27d11f3c73", + "createMs": 559.35, + "connectMs": 266.59, + "taskMs": 4509.38, + "actionsCompleted": 10, + "actionsPerSecond": 2.22, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1146.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 183.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 438.33, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 839.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 953.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 549.5, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.32, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.37, + "success": true + } + ] + }, + { + "sessionId": "11bd8619-151d-4f1b-9bd2-dc51781c045e", + "createMs": 820.83, + "connectMs": 253.79, + "taskMs": 5408.01, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1322.44, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 179.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 485.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 55.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1536.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 918.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 501.25, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.85, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 109.07, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 286.56, + "success": true + } + ] + }, + { + "sessionId": "bdfd29a0-a1e9-41c3-96ae-23d0da1f09e8", + "createMs": 1116.06, + "connectMs": 251.87, + "taskMs": 4972.93, + "actionsCompleted": 10, + "actionsPerSecond": 2.01, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1292.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 185.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 605.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1089.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 895.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 494.31, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 216.2, + "success": true + } + ] + }, + { + "sessionId": "83ca32db-2035-408d-8a5b-c2000d51b36b", + "createMs": 896.19, + "connectMs": 249.46, + "taskMs": 5084.81, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1177.09, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 523.73, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.66, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1469.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 873.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 529.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 146.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 148.54, + "success": true + } + ] + }, + { + "sessionId": "275d298b-e215-497b-be44-ce5a65fcff17", + "createMs": 1118.8, + "connectMs": 245.88, + "taskMs": 5173.13, + "actionsCompleted": 10, + "actionsPerSecond": 1.93, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1344.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 191.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 458.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 90.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1395.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 985.4, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.72, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 172.56, + "success": true + } + ] + }, + { + "sessionId": "b2a27f82-a952-441c-bbdc-8b8e45466f70", + "createMs": 1134.1, + "connectMs": 252.09, + "taskMs": 11886.83, + "actionsCompleted": 4, + "actionsPerSecond": 0.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1125.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 157.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 586.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10003.13, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 23 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "baabe207-8639-469e-bb4d-3af3bee93584", + "createMs": 971.98, + "connectMs": 262.55, + "taskMs": 6306.78, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1576.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 138.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2716.52, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 414.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 558.79, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 164.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 303.85, + "success": true + } + ] + }, + { + "sessionId": "da7506ad-ec91-4be6-a55b-ce2e4810d0eb", + "createMs": 899, + "connectMs": 250.48, + "taskMs": 4731.96, + "actionsCompleted": 10, + "actionsPerSecond": 2.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1379.32, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.72, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 421.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1187.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 805.65, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 436.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 116.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 183.3, + "success": true + } + ] + }, + { + "sessionId": "3b9ca900-55dd-4b53-ba8f-76843fc81883", + "createMs": 1079.45, + "connectMs": 263.63, + "taskMs": 5260.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1259.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 156.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.39, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1155.83, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1479.48, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 463.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 75.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 233.07, + "success": true + } + ] + }, + { + "sessionId": "93a4c2a0-b78c-4263-8ac5-047f92ff7994", + "createMs": 571.7, + "connectMs": 265.36, + "taskMs": 5795.76, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1304.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.26, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 89.57, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1449.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 631.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1249.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.8, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 237.06, + "success": true + } + ] + }, + { + "sessionId": "72056dd8-e0b6-4e81-ac92-a5cf56399584", + "createMs": 932.06, + "connectMs": 258.4, + "taskMs": 7740.84, + "actionsCompleted": 10, + "actionsPerSecond": 1.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1265.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 161.37, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4234.2, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 633.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 535.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 454.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 162.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 265.2, + "success": true + } + ] + }, + { + "sessionId": "6f2fb9bc-dd0b-469e-832c-8dc555e3dd86", + "createMs": 560.22, + "connectMs": 289.87, + "taskMs": 5024.99, + "actionsCompleted": 10, + "actionsPerSecond": 1.99, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1148.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 426.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1439.21, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1121.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.26, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.07, + "success": true + } + ] + }, + { + "sessionId": "5a6e1889-221e-42cf-a736-58806c41f037", + "createMs": 817.19, + "connectMs": 282.57, + "taskMs": 4798.29, + "actionsCompleted": 10, + "actionsPerSecond": 2.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1367.01, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 195.15, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 435.89, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 89.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1005.46, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 921.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 458.46, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.12, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 94.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.22, + "success": true + } + ] + }, + { + "sessionId": "032088de-a307-4dc8-8ab0-5060c5c830da", + "createMs": 929.21, + "connectMs": 260.36, + "taskMs": 5253.82, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1192.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 190.95, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 512.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1320.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1194.79, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 454.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 106.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 224.8, + "success": true + } + ] + }, + { + "sessionId": "3a967c6c-bd6b-435c-9e7c-02eb6352ba88", + "createMs": 1091.4, + "connectMs": 300.53, + "taskMs": 7704.39, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1324.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4153.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.63, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 750.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 263.27, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 595.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.3, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 139.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 283.36, + "success": true + } + ] + }, + { + "sessionId": "e32b5474-9531-497b-8559-7d9067215c66", + "createMs": 845.32, + "connectMs": 292.87, + "taskMs": 7819.43, + "actionsCompleted": 10, + "actionsPerSecond": 1.28, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1523.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 137.35, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4153.69, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 590.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 451.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 641.98, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 14.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 100.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 191.01, + "success": true + } + ] + }, + { + "sessionId": "df24a06f-2a19-4c5c-9014-af493e0951c8", + "createMs": 1026.41, + "connectMs": 292.15, + "taskMs": 4407.27, + "actionsCompleted": 10, + "actionsPerSecond": 2.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1108.17, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 152.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 462.12, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 12.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1048.04, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 806.13, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 410.45, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 73.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.17, + "success": true + } + ] + }, + { + "sessionId": "f6f29068-bf87-47bc-ab9c-33d057924f8d", + "createMs": 590.98, + "connectMs": 291.21, + "taskMs": 6216.64, + "actionsCompleted": 10, + "actionsPerSecond": 1.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1307.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 213.77, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 395.46, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2152.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1221.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 578.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.09, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 110.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 195.97, + "success": true + } + ] + }, + { + "sessionId": "b32ef835-4ad8-47df-a192-3833497748a0", + "createMs": 1012.31, + "connectMs": 279.23, + "taskMs": 8519.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1311.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 166.02, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4246.81, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.38, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 512.17, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 975.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 982.58, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 21.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 111.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 177.07, + "success": true + } + ] + }, + { + "sessionId": "8939c9d0-d28c-45d2-8e2e-b0e10d5e1328", + "createMs": 991.39, + "connectMs": 279.55, + "taskMs": 5240.59, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1584.31, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 122.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 473.75, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 24.52, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2062.82, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 270.86, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 299.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.88, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 145.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 245.51, + "success": true + } + ] + }, + { + "sessionId": "b2889489-1f80-4c58-a9fc-06628dc97fd9", + "createMs": 583.07, + "connectMs": 292.18, + "taskMs": 4282.43, + "actionsCompleted": 10, + "actionsPerSecond": 2.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1120.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 168.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 447.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.99, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 895.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 772.29, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 434.77, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 74.98, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 125.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.55, + "success": true + } + ] + }, + { + "sessionId": "3c55da29-6696-42d0-a277-4d505dd2b92c", + "createMs": 841.13, + "connectMs": 290.54, + "taskMs": 7661.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.31, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1514.72, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 131.75, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 591.41, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2390.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 841.6, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 530.4, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 1465.31, + "success": true + } + ] + }, + { + "sessionId": "c9f195a6-b0e5-4c1a-a621-9a5898c27154", + "createMs": 564.6, + "connectMs": 288.68, + "taskMs": 5270.28, + "actionsCompleted": 10, + "actionsPerSecond": 1.9, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1337.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 199.88, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 467.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 82.77, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1465.41, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 717.18, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 565.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 160.88, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 261.58, + "success": true + } + ] + }, + { + "sessionId": "84d5b9ac-086e-43b8-b5ed-c9a30cf5be40", + "createMs": 1057.44, + "connectMs": 312.68, + "taskMs": 6599.94, + "actionsCompleted": 10, + "actionsPerSecond": 1.52, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1227.87, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.94, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 467.74, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 20.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2957.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 660.19, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 769.09, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 23.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 130.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 178.23, + "success": true + } + ] + }, + { + "sessionId": "67bf491b-1f87-435a-8b70-bca63a0af355", + "createMs": 1021.6, + "connectMs": 324.45, + "taskMs": 6489.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1232.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 174.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 505.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.23, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1763.68, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1749.63, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 548.32, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.83, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 190.42, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 285.53, + "success": true + } + ] + }, + { + "sessionId": "dddca3ab-aa48-4ec0-9e0b-106d38f8d308", + "createMs": 862.26, + "connectMs": 316.97, + "taskMs": 7518.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.33, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1236.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.51, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4197.82, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 540.86, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 642.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 398.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.29, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 118.94, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 182.49, + "success": true + } + ] + }, + { + "sessionId": "baa1a9e1-576e-4a1f-9437-929e4489cfad", + "createMs": 1042.37, + "connectMs": 325.25, + "taskMs": 4815.21, + "actionsCompleted": 10, + "actionsPerSecond": 2.08, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1384.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.59, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 350.63, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 16.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1418.78, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 737.75, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 359.95, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 114.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 232.49, + "success": true + } + ] + }, + { + "sessionId": "712780b9-e40a-4417-aab3-84ae4f46f31b", + "createMs": 903.17, + "connectMs": 322.47, + "taskMs": 4794.78, + "actionsCompleted": 10, + "actionsPerSecond": 2.09, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1335.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 190.28, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 596.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.19, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 851.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 929.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 475.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.94, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 120.56, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 245.2, + "success": true + } + ] + }, + { + "sessionId": "6aebd9aa-caf6-4d37-9e1b-756467bc5efa", + "createMs": 883.83, + "connectMs": 306.96, + "taskMs": 7683.17, + "actionsCompleted": 10, + "actionsPerSecond": 1.3, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1331.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 198.5, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4194.49, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 13.9, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 809.22, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 361.98, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 372.43, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 129.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 259.64, + "success": true + } + ] + }, + { + "sessionId": "c085f11a-5dbe-4e55-ada0-4e9acca9faa7", + "createMs": 854.52, + "connectMs": 318.73, + "taskMs": 8545.69, + "actionsCompleted": 10, + "actionsPerSecond": 1.17, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1221.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 165.32, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.27, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.32, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1101.72, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 803.67, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 4446.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 11.26, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 112.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 186.24, + "success": true + } + ] + }, + { + "sessionId": "a0d9423a-0d46-4cf7-8d90-b17fa8c64631", + "createMs": 1070.33, + "connectMs": 320, + "taskMs": 5865.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1371.46, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 193.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 432.8, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 87.68, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2384.85, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 564.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 432.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.66, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 154.26, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 231.47, + "success": true + } + ] + }, + { + "sessionId": "47f1c6ed-b3c3-41a5-a3c8-a7a01c3a2cd1", + "createMs": 496.83, + "connectMs": 320.77, + "taskMs": 5608.13, + "actionsCompleted": 10, + "actionsPerSecond": 1.78, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1176.47, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 200.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 434.59, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 18.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1372.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1038.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1026.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 15.03, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 127.62, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 198.46, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 1152.96, + "p95": 1152.96, + "p99": 1152.96, + "samples": 1 + }, + "connectMs": { + "median": 329.61, + "p95": 329.61, + "p99": 329.61, + "samples": 1 + }, + "taskMs": { + "median": 8545.69, + "p95": 8545.69, + "p99": 8545.69, + "samples": 1 + }, + "loopMs": { + "median": 5410.34, + "p95": 7740.84, + "p99": 8042.1, + "samples": 49 + }, + "actionsPerSecond": { + "median": 41.54, + "p95": 41.54, + "p99": 41.54, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.82, + "p95": 2.25, + "p99": 2.34, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 1254.24, + "p95": 1428.54, + "p99": 1523.04, + "samples": 50 + }, + "waitForSelector": { + "median": 232.78, + "p95": 929.41, + "p99": 985.4, + "samples": 148 + }, + "screenshot": { + "median": 467.74, + "p95": 4153.7, + "p99": 4197.82, + "samples": 99 + }, + "textContent": { + "median": 15.03, + "p95": 55.6, + "p99": 88.5, + "samples": 99 + }, + "click": { + "median": 1372.2, + "p95": 2716.52, + "p99": 2860.29, + "samples": 49 + }, + "goBack": { + "median": 130.43, + "p95": 162.26, + "p99": 170.6, + "samples": 49 + } + } + }, + "compositeScore": 79.15, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + }, + { + "provider": "kernel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 10, + "createMs": 2369.47, + "connectMs": 284.24, + "taskMs": 2340.68, + "releaseMs": 40.03, + "totalMs": 5045.79, + "aggregateActionsPerSecond": 42.72, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 org limit exceeded for unified_concurrent_sessions: limit=10, utilization=10, requested=1" + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Rate limit exceeded. Please retry later." + }, + { + "sessionId": "u0vopbdgub545x6h2ijccl15", + "createMs": 186.03, + "connectMs": 101.24, + "taskMs": 1739.65, + "actionsCompleted": 10, + "actionsPerSecond": 5.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 365.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 167.91, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 234.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 9.86, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 382.39, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 162.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 312.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 57.4, + "success": true + } + ] + }, + { + "sessionId": "px29nj9alqyta02dbbj5s8l0", + "createMs": 210.78, + "connectMs": 127.07, + "taskMs": 1568.98, + "actionsCompleted": 10, + "actionsPerSecond": 6.37, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 357.92, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 187.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 231.94, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 5.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 341.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 116.69, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 258.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 3.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 26.13, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 40.02, + "success": true + } + ] + }, + { + "sessionId": "cs4qzhudl4m5xowrm17urjik", + "createMs": 181.06, + "connectMs": 146.65, + "taskMs": 1633.62, + "actionsCompleted": 10, + "actionsPerSecond": 6.12, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 404.9, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 229.93, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 11.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 320.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 229.99, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 194.9, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 28.41, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 41.48, + "success": true + } + ] + }, + { + "sessionId": "rqwe6bjet8oa24jrbmi6dlj6", + "createMs": 186.15, + "connectMs": 167.93, + "taskMs": 2111.61, + "actionsCompleted": 10, + "actionsPerSecond": 4.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 366.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 189.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 228.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.6, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 352.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 557.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 277.89, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 35.23, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 83.5, + "success": true + } + ] + }, + { + "sessionId": "toxqo0yf7ce6tjysm1carwa0", + "createMs": 193.05, + "connectMs": 226.92, + "taskMs": 1928.86, + "actionsCompleted": 10, + "actionsPerSecond": 5.18, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 433.63, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 103.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 278.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 19.02, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 391.95, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 339.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 261.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.93, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 37.29, + "success": true + } + ] + }, + { + "sessionId": "evzbypfe9vhfyh89yggsh4si", + "createMs": 196.94, + "connectMs": 160.68, + "taskMs": 1678.25, + "actionsCompleted": 10, + "actionsPerSecond": 5.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 308.74, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 147.48, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 179.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 4.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 437.18, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 167.47, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 321.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 73.36, + "success": true + } + ] + }, + { + "sessionId": "vpjfr3mnc1ihngwv6vl36hz6", + "createMs": 225.18, + "connectMs": 202.83, + "taskMs": 1769.03, + "actionsCompleted": 10, + "actionsPerSecond": 5.65, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 401.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 118.81, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 296.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.93, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 378.71, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 128.42, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 268.88, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.87, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 90.32, + "success": true + } + ] + }, + { + "sessionId": "f82slqx3y2lw51l79r8dz13j", + "createMs": 227.18, + "connectMs": 208.62, + "taskMs": 2161.13, + "actionsCompleted": 10, + "actionsPerSecond": 4.63, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 326.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 232.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 238.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 15.26, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 756.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 174.64, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 286.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 9.49, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 42.7, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 79.17, + "success": true + } + ] + }, + { + "sessionId": "mdpqbl7lk8z9tkhn6fkc8m2i", + "createMs": 242.63, + "connectMs": 222.59, + "taskMs": 2339.32, + "actionsCompleted": 10, + "actionsPerSecond": 4.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 355.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 163, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 279.84, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 14.96, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 428.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 613.55, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.97, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 12.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 50.48, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 110.31, + "success": true + } + ] + }, + { + "sessionId": "eauvyg6ru98vtywzqm6gr7x9", + "createMs": 230.98, + "connectMs": 283.68, + "taskMs": 1943.41, + "actionsCompleted": 10, + "actionsPerSecond": 5.15, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 272.04, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 164.74, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 256.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 10.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 454.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 224.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 428.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 10.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 34.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 87.75, + "success": true + } + ] + } + ], + "maxLiveSessions": 10, + "maxConcurrentActions": 10, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 10, + "p95": 10, + "p99": 10, + "samples": 1 + }, + "createMs": { + "median": 2369.47, + "p95": 2369.47, + "p99": 2369.47, + "samples": 1 + }, + "connectMs": { + "median": 284.24, + "p95": 284.24, + "p99": 284.24, + "samples": 1 + }, + "taskMs": { + "median": 2340.68, + "p95": 2340.68, + "p99": 2340.68, + "samples": 1 + }, + "loopMs": { + "median": 1848.94, + "p95": 2339.32, + "p99": 2339.32, + "samples": 10 + }, + "actionsPerSecond": { + "median": 42.72, + "p95": 42.72, + "p99": 42.72, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 5.42, + "p95": 6.37, + "p99": 6.37, + "samples": 10 + }, + "perActionType": { + "navigate": { + "median": 361.73, + "p95": 433.63, + "p99": 433.63, + "samples": 10 + }, + "waitForSelector": { + "median": 155.02, + "p95": 339.45, + "p99": 557.06, + "samples": 30 + }, + "screenshot": { + "median": 265.06, + "p95": 321.97, + "p99": 321.97, + "samples": 20 + }, + "textContent": { + "median": 10.03, + "p95": 19.02, + "p99": 19.02, + "samples": 20 + }, + "click": { + "median": 387.17, + "p95": 756.19, + "p99": 756.19, + "samples": 10 + }, + "goBack": { + "median": 35.05, + "p95": 59.93, + "p99": 59.93, + "samples": 10 + } + } + }, + "compositeScore": 18.03, + "successRate": 0.2, + "sessionCeiling": 10, + "concurrencyAchieved": 10, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Rate limit exceeded. Please retry later." + }, + { + "provider": "notte", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 8, + "createMs": 2960.98, + "connectMs": 4388.43, + "taskMs": 83146.12, + "releaseMs": 2382.36, + "totalMs": 94904.74, + "aggregateActionsPerSecond": 0.94, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 6). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 5). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "Max active sessions limit exceeded (limit: 5, current: 7). Please close some sessions or upgrade your plan." + }, + { + "sessionId": "9d41df1e-7eae-4098-9563-ccae647b2f41", + "createMs": 1427.02, + "connectMs": 2473.2, + "taskMs": 83145.51, + "actionsCompleted": 9, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1441.12, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 6756.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 10175.95, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 408.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 18176.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3078.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 30000.74, + "success": false, + "error": "Action timed out" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 5929.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 992.8, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 6185.58, + "success": true + } + ] + }, + { + "sessionId": "0ca91677-8646-4e55-b14b-0fefebfe168f", + "createMs": 1750.58, + "connectMs": 2591.52, + "taskMs": 41695.12, + "actionsCompleted": 10, + "actionsPerSecond": 0.24, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2170.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4042.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8175.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 414.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 12456.27, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3361.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5403.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 398.33, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1795.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3477.41, + "success": true + } + ] + }, + { + "sessionId": "6185e44b-04cc-4efb-bdc7-d81c8270cd03", + "createMs": 2959.81, + "connectMs": 2638.93, + "taskMs": 37459.66, + "actionsCompleted": 10, + "actionsPerSecond": 0.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1246.83, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3239.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4121.37, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 440.13, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13989.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3283.45, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5780.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 339.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 898.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4120.1, + "success": true + } + ] + }, + { + "sessionId": "d8ca16e0-85d2-4c7c-a086-e9e7a01fb888", + "createMs": 1363.4, + "connectMs": 3748.68, + "taskMs": 37012.74, + "actionsCompleted": 10, + "actionsPerSecond": 0.27, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1701.28, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 4755.62, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 4659.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 998.62, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 13063.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4137.11, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 2983.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 423.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 959.34, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3330.02, + "success": true + } + ] + }, + { + "sessionId": "e662e26e-7560-4393-9246-c158be8a762a", + "createMs": 2203.47, + "connectMs": 2465.56, + "taskMs": 82178.01, + "actionsCompleted": 9, + "actionsPerSecond": 0.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1624.07, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5822.12, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5998.38, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 401.05, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 24289.14, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 4894.33, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 30000.86, + "success": false, + "error": "Action timed out" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1366.58, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1374.57, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 6406.91, + "success": true + } + ] + }, + { + "sessionId": "9cc33c9f-1561-4a00-af22-996011286edd", + "createMs": 1222.75, + "connectMs": 3399.53, + "taskMs": 42927.06, + "actionsCompleted": 10, + "actionsPerSecond": 0.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1269.84, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5549.85, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 6260.1, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 437.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15940.29, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 2810.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5296.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 912.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 846.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 3605.06, + "success": true + } + ] + }, + { + "sessionId": "f9f6c621-29fc-4e07-96d4-6b87091388cc", + "createMs": 1351.15, + "connectMs": 4387.01, + "taskMs": 46513.5, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1702.37, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 5661.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 5272.01, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 391.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 15318.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3488.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 5460.7, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 1162.89, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 2953.5, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 5102.97, + "success": true + } + ] + }, + { + "sessionId": "edbbbf2b-dec2-4de3-abab-1fcd8396cb19", + "createMs": 1738.12, + "connectMs": 3301.52, + "taskMs": 47293.34, + "actionsCompleted": 10, + "actionsPerSecond": 0.21, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2107.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 3298.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 8883.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 409.71, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 14306.02, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 3110.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 9060.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 452.51, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 1137.97, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 4527.08, + "success": true + } + ] + } + ], + "maxLiveSessions": 8, + "maxConcurrentActions": 8, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 8, + "p95": 8, + "p99": 8, + "samples": 1 + }, + "createMs": { + "median": 2960.98, + "p95": 2960.98, + "p99": 2960.98, + "samples": 1 + }, + "connectMs": { + "median": 4388.43, + "p95": 4388.43, + "p99": 4388.43, + "samples": 1 + }, + "taskMs": { + "median": 47293.34, + "p95": 47293.34, + "p99": 47293.34, + "samples": 1 + }, + "loopMs": { + "median": 42311.09, + "p95": 47293.34, + "p99": 47293.34, + "samples": 6 + }, + "actionsPerSecond": { + "median": 0.94, + "p95": 0.94, + "p99": 0.94, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 0.22, + "p95": 0.27, + "p99": 0.27, + "samples": 8 + }, + "perActionType": { + "navigate": { + "median": 1662.67, + "p95": 2170.35, + "p99": 2170.35, + "samples": 8 + }, + "waitForSelector": { + "median": 4081.44, + "p95": 6185.58, + "p99": 6406.91, + "samples": 24 + }, + "screenshot": { + "median": 5620.64, + "p95": 10175.95, + "p99": 10175.95, + "samples": 14 + }, + "textContent": { + "median": 430.48, + "p95": 5929.84, + "p99": 5929.84, + "samples": 16 + }, + "click": { + "median": 14812.02, + "p95": 24289.14, + "p99": 24289.14, + "samples": 8 + }, + "goBack": { + "median": 1065.39, + "p95": 2953.5, + "p99": 2953.5, + "samples": 8 + } + } + }, + "compositeScore": 4.73, + "successRate": 0.12, + "sessionCeiling": 8, + "concurrencyAchieved": 8, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "Max active sessions limit exceeded (limit: 5, current: 8). Please close some sessions or upgrade your plan." + }, + { + "provider": "steel", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 5, + "createMs": 7108.01, + "connectMs": 1453.27, + "taskMs": 9789.04, + "releaseMs": 1278.66, + "totalMs": 20340.36, + "aggregateActionsPerSecond": 5.11, + "sessions": [ + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "", + "createMs": 0, + "connectMs": 0, + "taskMs": 0, + "actionsCompleted": 0, + "actionsPerSecond": 0, + "actions": [], + "error": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for a higher limit." + }, + { + "sessionId": "1ef1fff3-f97a-4771-96c2-970187256a07", + "createMs": 1217.87, + "connectMs": 441.37, + "taskMs": 4370.44, + "actionsCompleted": 10, + "actionsPerSecond": 2.29, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 323.52, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 450.67, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 558.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.04, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1532.67, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 405.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 516.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.78, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.68, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 363.19, + "success": true + } + ] + }, + { + "sessionId": "da49d575-0dba-42d8-81a3-16716a1f3f28", + "createMs": 1099.34, + "connectMs": 468.19, + "taskMs": 4635.82, + "actionsCompleted": 10, + "actionsPerSecond": 2.16, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 270.94, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 572.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 638.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 57.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1443.28, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 460.88, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 565.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 128.74, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 440.68, + "success": true + } + ] + }, + { + "sessionId": "c2c54186-ce77-47b9-9152-04404b0c72f9", + "createMs": 1157.72, + "connectMs": 400.38, + "taskMs": 4055.04, + "actionsCompleted": 10, + "actionsPerSecond": 2.47, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 273.77, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 457.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 509.28, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 51.59, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1280.97, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 399.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 528.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 53.84, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 383.09, + "success": true + } + ] + }, + { + "sessionId": "60334976-590d-4d8e-8de3-040878090c49", + "createMs": 1038.33, + "connectMs": 414.11, + "taskMs": 9787.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.02, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1880.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 519.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.83, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3763.12, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1289.3, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 795.63, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 63.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 177.46, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 515.57, + "success": true + } + ] + }, + { + "sessionId": "2a51c614-7ea9-44f4-b342-81b3cc3aa052", + "createMs": 1218.26, + "connectMs": 1452.06, + "taskMs": 9044.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.11, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 470.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 543.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 728.77, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 54.01, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2587.42, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 779.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 3182.44, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.43, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 149.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 494.48, + "success": true + } + ] + } + ], + "maxLiveSessions": 5, + "maxConcurrentActions": 5, + "loopsPerSession": 1 + } + ], + "summary": { + "sessionsAlive": { + "median": 5, + "p95": 5, + "p99": 5, + "samples": 1 + }, + "createMs": { + "median": 7108.01, + "p95": 7108.01, + "p99": 7108.01, + "samples": 1 + }, + "connectMs": { + "median": 1453.27, + "p95": 1453.27, + "p99": 1453.27, + "samples": 1 + }, + "taskMs": { + "median": 9789.04, + "p95": 9789.04, + "p99": 9789.04, + "samples": 1 + }, + "loopMs": { + "median": 4635.82, + "p95": 9787.49, + "p99": 9787.49, + "samples": 5 + }, + "actionsPerSecond": { + "median": 5.11, + "p95": 5.11, + "p99": 5.11, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 2.16, + "p95": 2.47, + "p99": 2.47, + "samples": 5 + }, + "perActionType": { + "navigate": { + "median": 323.52, + "p95": 1880.22, + "p99": 1880.22, + "samples": 5 + }, + "waitForSelector": { + "median": 460.88, + "p95": 1289.3, + "p99": 1289.3, + "samples": 15 + }, + "screenshot": { + "median": 602.27, + "p95": 3182.44, + "p99": 3182.44, + "samples": 10 + }, + "textContent": { + "median": 54.63, + "p95": 63.16, + "p99": 63.16, + "samples": 10 + }, + "click": { + "median": 1532.67, + "p95": 3763.12, + "p99": 3763.12, + "samples": 5 + }, + "goBack": { + "median": 128.74, + "p95": 177.46, + "p99": 177.46, + "samples": 5 + } + } + }, + "compositeScore": 7.78, + "successRate": 0.1, + "sessionCeiling": 5, + "concurrencyAchieved": 5, + "latencyRepresentative": false, + "quotaLimited": true, + "quotaEvidence": "429 Concurrent session limit reached for your hobby plan. Release a running session (DELETE /v1/sessions/{id}) before creating another, or upgrade your plan for" + }, + { + "provider": "tilion", + "mode": "browser-concurrent", + "concurrencyLevel": 50, + "rounds": [ + { + "sessionsAttempted": 50, + "sessionsAlive": 50, + "createMs": 2222.77, + "connectMs": 284.32, + "taskMs": 11334.39, + "releaseMs": 457.07, + "totalMs": 14372.71, + "aggregateActionsPerSecond": 43.58, + "sessions": [ + { + "sessionId": "sess_3ee0f836764f466fab9c91f65032dbb8", + "createMs": 1861.82, + "connectMs": 191.76, + "taskMs": 6718.44, + "actionsCompleted": 10, + "actionsPerSecond": 1.49, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 773.45, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 633.64, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 679.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.25, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3267.81, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 694.28, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 306.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 22.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 156.1, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 137.92, + "success": true + } + ] + }, + { + "sessionId": "sess_c7761fd8d33a46ce9d25e72d7185a4ca", + "createMs": 1007.76, + "connectMs": 261.33, + "taskMs": 5437.93, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 295.06, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 341.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 458.25, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 38.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1512.35, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1080.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1149.92, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 73.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 158.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 329.66, + "success": true + } + ] + }, + { + "sessionId": "sess_1372d7e6cf5842f6b085b4b6ce3f4560", + "createMs": 1397.29, + "connectMs": 241.94, + "taskMs": 5390.57, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 217.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 302.42, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 405.07, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1294.55, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1530.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1095.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 90.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.63, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 305.17, + "success": true + } + ] + }, + { + "sessionId": "sess_b877ad78eed84465b1ce790f6a7bd145", + "createMs": 2179.42, + "connectMs": 243.91, + "taskMs": 6272.7, + "actionsCompleted": 10, + "actionsPerSecond": 1.59, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 433.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 422.22, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 489.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2788.56, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1111.81, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 425.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 48.48, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 366.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 139.29, + "success": true + } + ] + }, + { + "sessionId": "sess_bb1850a2a3c0442bbaf8f06119da9869", + "createMs": 1894.06, + "connectMs": 279.34, + "taskMs": 6522.63, + "actionsCompleted": 10, + "actionsPerSecond": 1.53, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 506.96, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 437.56, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.66, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 33.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4080.92, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 469.54, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 347.62, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 16.1, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 69.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 146.37, + "success": true + } + ] + }, + { + "sessionId": "sess_4029d43f7ddc40d2a13df63b29b9342b", + "createMs": 680.91, + "connectMs": 240.99, + "taskMs": 5737.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 296.79, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 382.84, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 575.78, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 45.64, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2539.5, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 953.32, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 469.82, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.76, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 88.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 342.54, + "success": true + } + ] + }, + { + "sessionId": "sess_f940b41da4484b03ae00714bfefaddb4", + "createMs": 826.34, + "connectMs": 279.14, + "taskMs": 6479.82, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 493.35, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 623.89, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 738.9, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 250.76, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3187.57, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 556.04, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 310.72, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.15, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 218.13, + "success": true + } + ] + }, + { + "sessionId": "sess_172b474188824e9fa130e9fef2265fbe", + "createMs": 1463.4, + "connectMs": 246.49, + "taskMs": 5688.74, + "actionsCompleted": 10, + "actionsPerSecond": 1.76, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 652.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 408.7, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 381.11, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.49, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2345.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 947.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 460.06, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 47.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 101.29, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.63, + "success": true + } + ] + }, + { + "sessionId": "sess_7b87fef4e39c4d88a1a50ced00b5bf8f", + "createMs": 1125.49, + "connectMs": 260.46, + "taskMs": 5727.62, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 333.61, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 367.17, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 482.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 30.41, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1695.74, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1483.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 741.74, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 54.01, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 222.16, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 316.12, + "success": true + } + ] + }, + { + "sessionId": "sess_fbe97973860c44479d39876b9fe31f64", + "createMs": 1562.23, + "connectMs": 235.7, + "taskMs": 6368.73, + "actionsCompleted": 10, + "actionsPerSecond": 1.57, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 761.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 465.25, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 418.09, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.09, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3177.96, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 762.26, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 379.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.36, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 96.05, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 193.15, + "success": true + } + ] + }, + { + "sessionId": "sess_fa43f5802864474d97c36e1623842cc3", + "createMs": 1604.38, + "connectMs": 243.32, + "taskMs": 5438.8, + "actionsCompleted": 10, + "actionsPerSecond": 1.84, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 426.59, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 381.66, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 430.04, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 43.1, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1864.69, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1308.62, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 524.53, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 39.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 91.96, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 328.3, + "success": true + } + ] + }, + { + "sessionId": "sess_fb9da7ac75cc42e1aa8cf84bcadfdcda", + "createMs": 1391.57, + "connectMs": 197.97, + "taskMs": 5224.28, + "actionsCompleted": 10, + "actionsPerSecond": 1.91, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 256.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 309.16, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 417.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 47.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1375.2, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1199.93, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1143.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 187.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 244.89, + "success": true + } + ] + }, + { + "sessionId": "sess_f7886539083a4d2f914c5574eade6b4e", + "createMs": 2110.45, + "connectMs": 205.52, + "taskMs": 5984.59, + "actionsCompleted": 10, + "actionsPerSecond": 1.67, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 696.48, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 412.58, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.54, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 41.65, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3144.77, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 382.39, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 472.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 45.45, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 215.28, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 184.05, + "success": true + } + ] + }, + { + "sessionId": "sess_6df5598d41a74e62b33aa53bec048c21", + "createMs": 701.81, + "connectMs": 279.17, + "taskMs": 5863.69, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 443.54, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 514.79, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 413.29, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2612.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 830.95, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 536.22, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 27.16, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 168.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 285, + "success": true + } + ] + }, + { + "sessionId": "sess_72bb5a9a84a0469d9795ba93f958ddfd", + "createMs": 2104.77, + "connectMs": 280.16, + "taskMs": 5478.71, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 522.57, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 401.19, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 410.16, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 38.95, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1923.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1209.82, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 551.39, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 92.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.06, + "success": true + } + ] + }, + { + "sessionId": "sess_3bbcc8a3a5d04a32966bd05062536f36", + "createMs": 861.2, + "connectMs": 258.25, + "taskMs": 7983.88, + "actionsCompleted": 10, + "actionsPerSecond": 1.25, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 376.26, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 419.23, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 572.17, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 25.85, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4002.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 805.58, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1195.02, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.53, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 65.47, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 492.18, + "success": true + } + ] + }, + { + "sessionId": "sess_22ddf38a9ff44f009c98676d6cec25b4", + "createMs": 1313.23, + "connectMs": 159.48, + "taskMs": 5452.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 300.05, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 364.69, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 444.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 31.55, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1732.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1109.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1022.57, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.63, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 122.73, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 290.55, + "success": true + } + ] + }, + { + "sessionId": "sess_2b8b104a3bbd47e8bde91feee34cca24", + "createMs": 1836.75, + "connectMs": 211.91, + "taskMs": 7906.41, + "actionsCompleted": 10, + "actionsPerSecond": 1.26, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 2865.21, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 1067.9, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 1170.45, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.42, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1156.45, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 612.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 629.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 4.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 46.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.53, + "success": true + } + ] + }, + { + "sessionId": "sess_14d82bba21104d6db2139b66d55a8a38", + "createMs": 883.96, + "connectMs": 234.97, + "taskMs": 5114.77, + "actionsCompleted": 10, + "actionsPerSecond": 1.96, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 268.68, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 256.92, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 422.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.39, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1299.37, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1230.07, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1183.69, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 24.57, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 136.99, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 257.53, + "success": true + } + ] + }, + { + "sessionId": "sess_8e2ce912b6524670aca2e80ac314d0ba", + "createMs": 2220.59, + "connectMs": 278.91, + "taskMs": 5868.18, + "actionsCompleted": 10, + "actionsPerSecond": 1.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 604.75, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 451.06, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 386.71, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 29.08, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2515.25, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 962.31, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 432.68, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.35, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 189.45, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 276.53, + "success": true + } + ] + }, + { + "sessionId": "sess_dba734b0d87a4a02b3e5c8840904c4f5", + "createMs": 1225.93, + "connectMs": 180.8, + "taskMs": 5385.14, + "actionsCompleted": 10, + "actionsPerSecond": 1.86, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 279.4, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 276.04, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 507.31, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.75, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1343.11, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1305.37, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1133.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 91.25, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 146.4, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 270.38, + "success": true + } + ] + }, + { + "sessionId": "sess_ecf1b041835b45b2a7b4fe9b9ba98a2e", + "createMs": 1697.18, + "connectMs": 175.15, + "taskMs": 6502.36, + "actionsCompleted": 10, + "actionsPerSecond": 1.54, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 742.86, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 557.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 454.57, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 88.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3135.6, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 767.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 392.11, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.41, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 147.91, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 185.83, + "success": true + } + ] + }, + { + "sessionId": "sess_64a54ac6fc254adda9034aa090069c6c", + "createMs": 976.8, + "connectMs": 268.76, + "taskMs": 5784.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 496.22, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 446.26, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 441, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.84, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2511.44, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 917.06, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 442.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 38.02, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 117.9, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 336.21, + "success": true + } + ] + }, + { + "sessionId": "sess_8dd0b3fa1cbe4629862eeefd1cf38bdd", + "createMs": 1985.75, + "connectMs": 278.67, + "taskMs": 11333, + "actionsCompleted": 4, + "actionsPerSecond": 0.35, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 494.66, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 415.24, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 375.58, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 10000.61, + "success": false, + "error": "page.waitForSelector: Timeout 10000ms exceeded.\nCall log:\n - waiting for locator('#mw-content-text a[href*=\"/wiki/\"]') to be visible\n 19 × locator resolved to 10 elements. Proceeding with the first one: \n" + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 8, + "type": "textContent", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 9, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + }, + { + "index": 10, + "type": "goBack", + "durationMs": 0, + "success": false, + "error": "skipped: click failed" + } + ] + }, + { + "sessionId": "sess_9e9fa67d68834188870152475c6cf283", + "createMs": 825.68, + "connectMs": 279.8, + "taskMs": 6603.41, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1044.19, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 710.49, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 982.99, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 96.27, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2708.34, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 401.1, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 358.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 133.33, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 150.47, + "success": true + } + ] + }, + { + "sessionId": "sess_0b4b67f9a3cc4c2b99730292967d452a", + "createMs": 1540.33, + "connectMs": 280.02, + "taskMs": 6221.26, + "actionsCompleted": 10, + "actionsPerSecond": 1.61, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 876.24, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 472.45, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 391.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 78.51, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3032.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 551.97, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 461.13, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 25.75, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 141.6, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 189.58, + "success": true + } + ] + }, + { + "sessionId": "sess_f30f5dab7caa43e69288352e8d89f5f4", + "createMs": 608.26, + "connectMs": 203.64, + "taskMs": 5718.49, + "actionsCompleted": 10, + "actionsPerSecond": 1.75, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 377.56, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 389.54, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 507.87, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 46.48, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1896.01, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1489.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 517.37, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 56.46, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 101.85, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 335.82, + "success": true + } + ] + }, + { + "sessionId": "sess_40f7ca60d77c4961b20fd1ce3879dcdc", + "createMs": 1684.68, + "connectMs": 258.52, + "taskMs": 5765.57, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 558.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 494.08, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 377.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.45, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2228.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1056.16, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 505.81, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 55.39, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 142.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 320.45, + "success": true + } + ] + }, + { + "sessionId": "sess_f8894c7b579c448d87c1978a7e855e40", + "createMs": 669.92, + "connectMs": 283.14, + "taskMs": 5899.45, + "actionsCompleted": 10, + "actionsPerSecond": 1.7, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 320.38, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 411.76, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 480.76, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 60.69, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2709.3, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 866.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 511.71, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 29.44, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 203.98, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 305.08, + "success": true + } + ] + }, + { + "sessionId": "sess_98d6df2cb3674311af8d497abfa8f624", + "createMs": 1603.87, + "connectMs": 257.83, + "taskMs": 6740.42, + "actionsCompleted": 10, + "actionsPerSecond": 1.48, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 700.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 419.98, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 399.53, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.7, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 4287.23, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 464.43, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 263.14, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.65, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 43.89, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 105.13, + "success": true + } + ] + }, + { + "sessionId": "sess_a3eaaf34c9c84a478f521669f38772a0", + "createMs": 1312.63, + "connectMs": 166.24, + "taskMs": 5458.12, + "actionsCompleted": 10, + "actionsPerSecond": 1.83, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 301.8, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 454.99, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 441.56, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.15, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1622.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1313.8, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 828.51, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.56, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.21, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 279.95, + "success": true + } + ] + }, + { + "sessionId": "sess_318e05c471f94b1c9565faba9e1d6ab5", + "createMs": 2181.56, + "connectMs": 215.86, + "taskMs": 5799.52, + "actionsCompleted": 10, + "actionsPerSecond": 1.72, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 440.73, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 338.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 553.06, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 40.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2539.05, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 880.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 537.42, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 35.07, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 82.17, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 353.25, + "success": true + } + ] + }, + { + "sessionId": "sess_6d0d3daff33e43f5bad1433f12d847c8", + "createMs": 1113.11, + "connectMs": 216.11, + "taskMs": 5738.04, + "actionsCompleted": 10, + "actionsPerSecond": 1.74, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 549.99, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 403.09, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 439.96, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 39.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2392.33, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 947.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 510.94, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 41.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 98.38, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 314.92, + "success": true + } + ] + }, + { + "sessionId": "sess_8ba4f61060224253aa162f7f1bee3d4d", + "createMs": 2220.13, + "connectMs": 169.98, + "taskMs": 5783.18, + "actionsCompleted": 10, + "actionsPerSecond": 1.73, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 548, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 407.43, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 402.88, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 32.72, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2520.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 872.92, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 543.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 40.74, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 97.65, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 317.1, + "success": true + } + ] + }, + { + "sessionId": "sess_343d22cd42ca4db5a7bc275c80e04640", + "createMs": 2052.94, + "connectMs": 260.62, + "taskMs": 5391.67, + "actionsCompleted": 10, + "actionsPerSecond": 1.85, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 410.42, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 349.47, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 483.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.46, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1693.62, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1308.5, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 694.16, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 39.87, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 99.43, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 275.31, + "success": true + } + ] + }, + { + "sessionId": "sess_9f8559de928444b6821d1b663b674a5c", + "createMs": 2167.22, + "connectMs": 182.51, + "taskMs": 5921.06, + "actionsCompleted": 10, + "actionsPerSecond": 1.69, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 568.91, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 433.73, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 372.18, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.91, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2426.99, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1179.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 441.85, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 61.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 176.01, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 233.46, + "success": true + } + ] + }, + { + "sessionId": "sess_e95d2c5b1e08463393783be69a5d0a82", + "createMs": 2148.71, + "connectMs": 197.66, + "taskMs": 8161.19, + "actionsCompleted": 10, + "actionsPerSecond": 1.23, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 626.69, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 470.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 478.86, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 93.11, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3076, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1451.12, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1082.47, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 50.86, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 325.69, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 506.35, + "success": true + } + ] + }, + { + "sessionId": "sess_59a0c41be2a74e10bbd81758aa243a17", + "createMs": 1079, + "connectMs": 180.34, + "taskMs": 5120.07, + "actionsCompleted": 10, + "actionsPerSecond": 1.95, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 258.76, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 257.78, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 442.43, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 44.44, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1672.66, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1024.56, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1000.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 42.37, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 105.2, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 270.9, + "success": true + } + ] + }, + { + "sessionId": "sess_15779860b36844dd905963d52ed6423d", + "createMs": 1940.89, + "connectMs": 279.55, + "taskMs": 6246.58, + "actionsCompleted": 10, + "actionsPerSecond": 1.6, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 865.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 349.2, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 397.65, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 75.2, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3236.16, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 626.68, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 388.65, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 17.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 62.15, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 228.05, + "success": true + } + ] + }, + { + "sessionId": "sess_541b877057774ac3a39dc0738da1eddc", + "createMs": 2106.74, + "connectMs": 192.1, + "taskMs": 6605.66, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 723.82, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 394.96, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 389.3, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 49.3, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3252.59, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 854.03, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 573.99, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 49.14, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 128.11, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 190.44, + "success": true + } + ] + }, + { + "sessionId": "sess_abae1a727ec548ccae39a49ca8ee44b1", + "createMs": 1730.17, + "connectMs": 229.04, + "taskMs": 6108.25, + "actionsCompleted": 10, + "actionsPerSecond": 1.64, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 679.43, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 418.41, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 392.51, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 37.14, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3292.8, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 416.35, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 506.15, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 31.5, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 104.77, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 229.18, + "success": true + } + ] + }, + { + "sessionId": "sess_7b7dcfbae20a4ba5b3d442fcff35e238", + "createMs": 719.78, + "connectMs": 163.87, + "taskMs": 5848.1, + "actionsCompleted": 10, + "actionsPerSecond": 1.71, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 282.34, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 415.46, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 555.14, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 42.03, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2687.19, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 993.46, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 367.73, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 51.7, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 121.36, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 331.69, + "success": true + } + ] + }, + { + "sessionId": "sess_53329023aeb540e88674f3f57a135295", + "createMs": 733.01, + "connectMs": 278.64, + "taskMs": 5516.29, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 161.36, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 237.05, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 292.35, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 35.43, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2268.49, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1395.2, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 607.48, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 37.69, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 137.81, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 343.42, + "success": true + } + ] + }, + { + "sessionId": "sess_0844ccaee6e241d580c1ee7b5b5f1448", + "createMs": 1841.46, + "connectMs": 283.05, + "taskMs": 6620.81, + "actionsCompleted": 10, + "actionsPerSecond": 1.51, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 723.88, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 453.82, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 446.5, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 81.35, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3357.76, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 874.53, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 394.28, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 18.55, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 67.04, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 203.1, + "success": true + } + ] + }, + { + "sessionId": "sess_2d8a0fd398b14a94bdf10bdd28c62309", + "createMs": 1281.62, + "connectMs": 190.38, + "taskMs": 5078.09, + "actionsCompleted": 10, + "actionsPerSecond": 1.97, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 224.6, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 259.21, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 423.4, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 34.34, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1222.93, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 830.44, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1289.86, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 220.32, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 254.27, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 318.73, + "success": true + } + ] + }, + { + "sessionId": "sess_c9dc9d89c5244d1f8b12fa4a885dce30", + "createMs": 1256.61, + "connectMs": 202.68, + "taskMs": 6346.84, + "actionsCompleted": 10, + "actionsPerSecond": 1.58, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 1036.16, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 306.01, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 396.7, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 77.47, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3503.51, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 536.38, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 281.24, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 20.52, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 59.59, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 129.26, + "success": true + } + ] + }, + { + "sessionId": "sess_a7a7168fdf804b0a82415cc171afd759", + "createMs": 1985.19, + "connectMs": 222.28, + "taskMs": 5516.16, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 467.7, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 386.53, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 474.83, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 41.58, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 2316.79, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1006.41, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 376.59, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 19.91, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 95.3, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 330.52, + "success": true + } + ] + }, + { + "sessionId": "sess_982c7752d3db480897f3a77ac24f0cb6", + "createMs": 983.26, + "connectMs": 215.55, + "taskMs": 5526.65, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 270.55, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 310.55, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 558.08, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 26.94, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1481.26, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1077.74, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1293.54, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 32.04, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 60.44, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 415.5, + "success": true + } + ] + }, + { + "sessionId": "sess_8093ffb0a554408ca71d8306080886fb", + "createMs": 1450.8, + "connectMs": 205.01, + "taskMs": 7451.64, + "actionsCompleted": 10, + "actionsPerSecond": 1.34, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 869.5, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 649.27, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 642.15, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 36.5, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 3124.58, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 734.24, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 674.91, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 13.62, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 193.95, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 512.93, + "success": true + } + ] + }, + { + "sessionId": "sess_725b055140954b17bb92c717f81a83f4", + "createMs": 1195.62, + "connectMs": 278.39, + "taskMs": 5516.02, + "actionsCompleted": 10, + "actionsPerSecond": 1.81, + "actions": [ + { + "index": 1, + "type": "navigate", + "durationMs": 213.27, + "success": true + }, + { + "index": 2, + "type": "waitForSelector", + "durationMs": 250.14, + "success": true + }, + { + "index": 3, + "type": "screenshot", + "durationMs": 536.79, + "success": true + }, + { + "index": 4, + "type": "textContent", + "durationMs": 39.21, + "success": true + }, + { + "index": 5, + "type": "click", + "durationMs": 1239.07, + "success": true + }, + { + "index": 6, + "type": "waitForSelector", + "durationMs": 1556.15, + "success": true + }, + { + "index": 7, + "type": "screenshot", + "durationMs": 1103.64, + "success": true + }, + { + "index": 8, + "type": "textContent", + "durationMs": 59.93, + "success": true + }, + { + "index": 9, + "type": "goBack", + "durationMs": 153.78, + "success": true + }, + { + "index": 10, + "type": "waitForSelector", + "durationMs": 364.04, + "success": true + } + ] + } + ], + "maxLiveSessions": 50, + "maxConcurrentActions": 50, + "loopsPerSession": 1, + "actionTimedOut": true + } + ], + "summary": { + "sessionsAlive": { + "median": 50, + "p95": 50, + "p99": 50, + "samples": 1 + }, + "createMs": { + "median": 2222.77, + "p95": 2222.77, + "p99": 2222.77, + "samples": 1 + }, + "connectMs": { + "median": 284.32, + "p95": 284.32, + "p99": 284.32, + "samples": 1 + }, + "taskMs": { + "median": 8161.19, + "p95": 8161.19, + "p99": 8161.19, + "samples": 1 + }, + "loopMs": { + "median": 5799.52, + "p95": 6740.42, + "p99": 7906.41, + "samples": 49 + }, + "actionsPerSecond": { + "median": 43.58, + "p95": 43.58, + "p99": 43.58, + "samples": 1 + }, + "perSessionActionsPerSecond": { + "median": 1.72, + "p95": 1.86, + "p99": 1.95, + "samples": 50 + }, + "perActionType": { + "navigate": { + "median": 494.01, + "p95": 869.5, + "p99": 1036.16, + "samples": 50 + }, + "waitForSelector": { + "median": 413.91, + "p95": 1179.15, + "p99": 1308.5, + "samples": 148 + }, + "screenshot": { + "median": 469.82, + "p95": 1103.64, + "p99": 1170.45, + "samples": 99 + }, + "textContent": { + "median": 38.95, + "p95": 78.51, + "p99": 91.25, + "samples": 99 + }, + "click": { + "median": 2515.25, + "p95": 3357.76, + "p99": 4002.6, + "samples": 49 + }, + "goBack": { + "median": 121.36, + "p95": 215.28, + "p99": 254.27, + "samples": 49 + } + } + }, + "compositeScore": 78.34, + "successRate": 0.98, + "sessionCeiling": 50, + "concurrencyAchieved": 50, + "latencyRepresentative": true + } + ] +} \ No newline at end of file