Skip to content

Commit 412727b

Browse files
committed
update to chrome 102
1 parent a66dd73 commit 412727b

File tree

8 files changed

+4546
-4129
lines changed

8 files changed

+4546
-4129
lines changed

webdriver-ts-results/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const App = () => {
1515
return (
1616
<div>
1717
{disclaimer}
18-
<p>The benchmark was run on a Razer Blade 15 Advanced (i7-8750H, 64 GB RAM, Fedora 36 (Linux 5.17.3, mitigations=off, Wayland), Chrome 101.0.4951.41 (64-bit))
19-
using the playwright benchmark driver with full tracing.
18+
<p>The benchmark was run on a Razer Blade 15 Advanced (i7-8750H, 64 GB RAM, Fedora 36 (Linux 5.17.3, mitigations=off, Wayland), Chrome 102.0.5005.61 (64-bit))
19+
using the puppeteer benchmark driver.
2020
</p>
2121
<SelectionBar/>
2222
<ResultTable type={FrameworkType.KEYED}/>

webdriver-ts-results/src/results.ts

Lines changed: 3145 additions & 3145 deletions
Large diffs are not rendered by default.

webdriver-ts-results/table.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

webdriver-ts/package-lock.json

Lines changed: 1380 additions & 963 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webdriver-ts/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,34 +17,34 @@
1717
"author": "",
1818
"license": "Apache-2.0",
1919
"devDependencies": {
20-
"@types/lodash": "4.14.181",
21-
"@types/node": "17.0.23",
22-
"@types/ramda": "^0.28.11",
23-
"@types/selenium-webdriver": "4.0.18",
20+
"@types/lodash": "4.14.182",
21+
"@types/node": "17.0.35",
22+
"@types/ramda": "^0.28.13",
23+
"@types/selenium-webdriver": "4.1.0",
2424
"@types/semver": "7.3.9",
2525
"@types/underscore": "^1.11.4",
2626
"@types/yargs": "17.0.10",
2727
"dockerode": "^3.3.1",
2828
"rimraf": "^3.0.2",
29-
"ts-node": "10.7.0",
30-
"typescript": "4.6.3"
29+
"ts-node": "10.8.0",
30+
"typescript": "4.7.2"
3131
},
3232
"dependencies": {
33-
"axios": "^0.26.1",
34-
"chromedriver": "^100.0.0",
33+
"axios": "^0.27.2",
34+
"chromedriver": "^101.0.0",
3535
"cross-env": "7.0.3",
3636
"dot": "1.1.3",
3737
"jstat": "1.9.5",
38-
"lighthouse": "9.5.0",
38+
"lighthouse": "9.6.1",
3939
"lodash": "4.17.21",
4040
"marky": "^1.2.4",
41-
"npm-check-updates": "12.5.4",
42-
"playwright": "^1.21.0",
43-
"puppeteer-core": "^13.5.1",
41+
"npm-check-updates": "13.0.3",
42+
"playwright": "^1.22.2",
43+
"puppeteer-core": "^14.1.1",
4444
"ramda": "^0.28.0",
45-
"selenium-webdriver": "4.1.1",
46-
"semver": "7.3.5",
45+
"selenium-webdriver": "4.1.2",
46+
"semver": "7.3.7",
4747
"underscore": "^1.13.3",
48-
"yargs": "17.4.0"
48+
"yargs": "17.5.1"
4949
}
5050
}

webdriver-ts/results.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

webdriver-ts/src/benchmarkRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ let args: any = yargs(process.argv)
251251
.help("help")
252252
.boolean("headless").default("headless", false)
253253
.boolean("smoketest")
254-
.string("runner").default("runner","puppeteer")
254+
.string("runner").default("runner",config.BENCHMARK_RUNNER)
255255
.array("framework")
256256
.array("benchmark")
257257
.string("chromeBinary").argv;

webdriver-ts/src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export let config = {
7070
TRACES_DIRECTORY: "traces",
7171
ALLOW_BATCHING: true,
7272
HOST: 'localhost',
73-
BENCHMARK_RUNNER: BENCHMARK_RUNNER.PLAYWRIGHT
73+
BENCHMARK_RUNNER: BENCHMARK_RUNNER.PUPPETEER
7474
};
7575
export type TConfig = typeof config;
7676

0 commit comments

Comments
 (0)