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 5e96ca4 commit 18e90f2Copy full SHA for 18e90f2
webdriver-ts/src/isKeyed.ts
@@ -278,7 +278,11 @@ async function runBench(frameworkNames: string[]) {
278
console.log("ERROR running "+runFrameworks[i].fullNameWithKeyedAndVersion, e);
279
allCorrect = false;
280
} finally {
281
- await driver.quit();
+ try {
282
+ await driver.quit();
283
+ } catch (e) {
284
+ console.log("error calling driver.quit - ignoring this excpetion");
285
+ }
286
}
287
288
if (!allCorrect) process.exit(1)
0 commit comments