Skip to content

Commit 9383c2f

Browse files
committed
chrome 127
1 parent 9aa578c commit 9383c2f

File tree

7 files changed

+996
-952
lines changed

7 files changed

+996
-952
lines changed

webdriver-ts-results/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const App = () => {
4848

4949
const testEnvironmentInfo = (
5050
<p>
51-
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome for Testing 126.0.6478.55
51+
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome for Testing 127.0.6533.72
5252
(arm64) using the puppeteer benchmark driver with reduced tracing.
5353
</p>
5454
);

webdriver-ts-results/src/results.ts

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

webdriver-ts/package-lock.json

Lines changed: 756 additions & 714 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
@@ -21,27 +21,27 @@
2121
"author": "",
2222
"license": "Apache-2.0",
2323
"devDependencies": {
24-
"@types/node": "20.12.12",
25-
"@types/ramda": "0.30.0",
26-
"@types/selenium-webdriver": "4.1.22",
24+
"@types/node": "20.14.12",
25+
"@types/ramda": "0.30.1",
26+
"@types/selenium-webdriver": "4.1.24",
2727
"@types/semver": "7.5.8",
2828
"@types/yargs": "17.0.32",
29-
"@vitest/coverage-v8": "^1.6.0",
29+
"@vitest/coverage-v8": "^2.0.4",
3030
"ts-node": "^10.9.2",
31-
"typescript": "5.4.5",
32-
"vitest": "^1.6.0"
31+
"typescript": "5.5.4",
32+
"vitest": "^2.0.4"
3333
},
3434
"dependencies": {
35-
"chromedriver": "125.0.2",
35+
"chromedriver": "127.0.0",
3636
"cross-env": "7.0.3",
37-
"lighthouse": "12.0.0",
38-
"playwright": "1.44.1",
39-
"playwright-firefox": "1.44.1",
40-
"playwright-webkit": "1.44.1",
41-
"puppeteer-core": "22.10.0",
42-
"ramda": "0.30.0",
43-
"selenium-webdriver": "4.21.0",
44-
"semver": "7.6.2",
37+
"lighthouse": "12.1.0",
38+
"playwright": "1.45.3",
39+
"playwright-firefox": "1.45.3",
40+
"playwright-webkit": "1.45.3",
41+
"puppeteer-core": "22.13.1",
42+
"ramda": "0.30.1",
43+
"selenium-webdriver": "4.23.0",
44+
"semver": "7.6.3",
4545
"yargs": "17.7.2"
4646
}
4747
}

webdriver-ts/results.json

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

webdriver-ts/src/webdriverAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export async function findByXPath(driver: WebDriver, path: string, isInButtonAre
6666

6767
function waitForCondition(driver: WebDriver) {
6868
return async function (text: string, fn: (driver: WebDriver) => Promise<boolean>, timeout: number): Promise<boolean> {
69-
return await driver.wait(new Condition<Promise<boolean>>(text, fn), timeout);
69+
return !!(await driver.wait(new Condition<Promise<boolean>>(text, fn), timeout));
7070
};
7171
}
7272

webdriver-ts/src/webdriverCDPAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export async function findByXPath(driver: WebDriver, path: string, isInButtonAre
9191

9292
function waitForCondition(driver: WebDriver) {
9393
return async function (text: string, fn: (driver: WebDriver) => Promise<boolean>, timeout: number): Promise<boolean> {
94-
return await driver.wait(new Condition<Promise<boolean>>(text, fn), timeout);
94+
return !!(await driver.wait(new Condition<Promise<boolean>>(text, fn), timeout));
9595
};
9696
}
9797

0 commit comments

Comments
 (0)