File tree Expand file tree Collapse file tree 6 files changed +4173
-3915
lines changed
Expand file tree Collapse file tree 6 files changed +4173
-3915
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99
1010 container :
11- image : node:19
11+ image : node:23
1212
1313 strategy :
1414 fail-fast : false
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
Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff line change 11version : ' 3'
22services :
33 node :
4- image : node:19
4+ image : node:23
55 volumes :
66 - ./../:/project
77 working_dir : /project
You can’t perform that action at this time.
0 commit comments