Skip to content

Commit 9b73d69

Browse files
committed
remove error if unusually long time between mousedown and click
1 parent 593c147 commit 9b73d69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webdriver-ts/src/timeline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export async function computeResultsCPU(
179179
}
180180
if (mousedownToClick > 10000) {
181181
console.log("difference between mousedown and click is unusually long", mousedownToClick, fileName);
182-
throw "difference between mousedown and click is unusually long";
182+
// throw "difference between mousedown and click is unusually long";
183183
}
184184
}
185185

0 commit comments

Comments
 (0)