Skip to content

Commit c3a0963

Browse files
committed
updated versions, packages and identifiers for tests
1 parent da9a412 commit c3a0963

File tree

6 files changed

+4173
-3915
lines changed

6 files changed

+4173
-3915
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
container:
11-
image: node:19
11+
image: node:23
1212

1313
strategy:
1414
fail-fast: false
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-node@v2
2121
with:
22-
node-version: '16'
22+
node-version: '23'
2323
cache: 'npm'
2424
- run: npm ci
2525
- run: npm run test-ci

automate.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ try {
3333
await driver.get('https://duckduckgo.com/');
3434

3535
// Search for 'Selenium dev'
36-
const searchBox = await driver.findElement(By.id('search_form_input_homepage'));
36+
const searchBox = await driver.findElement(By.id('searchbox_input'));
3737
await searchBox.sendKeys('Selenium dev', Key.ENTER);
3838

3939
// Wait until the result page is loaded
40-
await driver.wait(until.elementLocated(By.css('#links .result')));
40+
await driver.wait(until.elementLocated(By.css('#more-results')));
4141
} finally {
4242
// Close the browser
4343
await driver.quit();

dev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
node:
4-
image: node:19
4+
image: node:23
55
volumes:
66
- ./../:/project
77
working_dir: /project

0 commit comments

Comments
 (0)