We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2bb33f commit 1f12bb2Copy full SHA for 1f12bb2
playwright/cdp.js
@@ -33,7 +33,7 @@ let metrics = [];
33
console.log("Connection to browser on " + browserAddress);
34
const browser = await chromium.connectOverCDP(browserAddress);
35
36
-for (var run = 1; run<=runs; run++) {
+for (var run = 0; run<runs; run++) {
37
38
// measure run time.
39
const rstart = process.hrtime.bigint();
puppeteer/cdp.js
@@ -35,7 +35,7 @@ let metrics = [];
browserURL: browserAddress,
});
- for (var run = 1; run<=runs; run++) {
+ for (var run = 0; run<runs; run++) {
40
41
0 commit comments