Hi all,
I apologize for the inconvenience if my topic is inappropriate in this group.
On my Windows 10 I have Chrome browser Version 123.0.6312.123 (Official Build) (64-bit) with Selenium IDE extension installed
I recorded a simple test , like access to
https://opensource-demo.orangehrmlive.com/ --> login --> logout
I installed nodejs , npm on my Windows 10
node -v
v20.12.2
npm -v
10.5.0
Then I used npm to install selenium-side-runner , chromedriver
selenium-side-runner --version
4.0.4
chromedriver --version
ChromeDriver 123.0.6312.105 (399174dbe6eff0f59de9a6096129c0c827002b3a-refs/branch-heads/6312@{#761})
When I tried to rune test3.side with selenium-side-runner I get error as below
selenium-side-runner test3.side
info: Running test test3
FAIL ../AppData/Roaming/npm/node_modules/selenium-side-runner/dist/main.test.js (61.544 s)
Running project test3
Running suite Default Suite
× Running test test3 (60022 ms)
● Running project test3 › Running suite Default Suite › Running test test3
thrown: "Exceeded timeout of 60000 ms for a test.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See
https://jestjs.io/docs/api#testname-fn-timeout."
at node_modules/jest-each/build/bind.js:47:15
at Array.forEach (<anonymous>)
at src/main.test.ts:174:11
at Array.forEach (<anonymous>)
at src/main.test.ts:161:22
at Array.forEach (<anonymous>)
at Object.<anonymous> (src/main.test.ts:134:18)
Test Suites: 1 failed, 1 total
Tests: 1 failed, 1 total
Snapshots: 0 total
Time: 61.713 s
Ran all test suites within paths "C:\Users\jack.chuong\AppData\Roaming\npm\node_modules\selenium-side-runner\dist\main.test.js".
Please give me some advice, thank you very much.