Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[🐛 Bug]: reloadSession causes problem for selenium #12588

Open
3 tasks done
BillAtRicoh opened this issue Mar 27, 2024 · 6 comments
Open
3 tasks done

[🐛 Bug]: reloadSession causes problem for selenium #12588

BillAtRicoh opened this issue Mar 27, 2024 · 6 comments
Labels
Bug 🐛 help wanted Issues that are free to take by anyone interested Needs Investigation Issues that require more information on the problem.

Comments

@BillAtRicoh
Copy link

Have you read the Contributing Guidelines on issues?

WebdriverIO Version

8.14.6 and up

Node.js Version

v18.16.0

Mode

WDIO Testrunner

Which capabilities are you using?

{
  browserName: 'firefox',
  acceptInsecureCerts: true,
  'moz:firefoxOptions': {
    'args': [
    ],
    'prefs': {
      'intl.accept_languages': 'en'
    }
  }
}

What happened?

The following bug fix causes a problem for browser.reloadSession with Selenium.
#10887
#10418

We must use Selenium for our testing. We are updating to Webdriverio v8. Since WDIO v8.14.6, browser.reloadSession() causes a problem if it runs with Selenium. The test hangs until the timeout expires, then the test fails.

Actual results:

  1. Test starts
  2. Browser window opens
  3. Test pauses execution
  4. Timeout expires
  5. Browser window closes
  6. Test ends
  7. New browser window opens
  8. Browser window remains open

What is your expected behavior?

  1. Test starts
  2. Browser window opens
  3. Browser window closes
  4. New browser window opens
  5. Browser window closes
  6. Test ends

How to reproduce the bug.

describe( 'reloadSession bug', function() {
it( 'reloadSession', async function() {
await browser.reloadSession();
} );
} );

Relevant log output

*********************************************
node --version
v18.16.0
*********************************************
npm list
reloadSessionBug@1.0.0 C:\wdio
+-- @wdio/cli@8.35.1
+-- @wdio/config@8.35.0
+-- @wdio/devtools-service@8.35.1
+-- @wdio/globals@8.35.1
+-- @wdio/jasmine-framework@8.35.1
+-- @wdio/junit-reporter@8.32.4
+-- @wdio/local-runner@8.35.1
+-- @wdio/runner@8.35.1
+-- @wdio/shared-store-service@8.35.1
+-- @wdio/spec-reporter@8.32.4
+-- @wdio/utils@8.35.0
+-- app-module-path@2.2.0
+-- node-fetch@2.7.0
+-- selenium-standalone@9.4.0
`-- webdriverio@8.35.1

*********************************************
type wdio.conf.js

exports.config = {
    maxInstances: 1,
    capabilities: [
        {
            browserName: 'firefox',
            acceptInsecureCerts: true,
            'moz:firefoxOptions': {
                'args': [
                ],
                'prefs': {
                    'intl.accept_languages': 'en'
                }
            }
        }
    ],
    logLevel: 'debug',
    bail: 0,
    waitforTimeout: 10000,
    connectionRetryTimeout: 120000,
    connectionRetryCount: 10,
    framework: 'jasmine',
    reporters: ['spec'],
    jasmineOpts: {
        defaultTimeoutInterval: 60000,
        expectationResultHandler: function(passed, assertion) {
            // do something
        }
    },
    port: 4444,
    path: '/wd/hub'
}
*********************************************
type reloadSessionBug.spec.js

describe( 'reloadSession bug', function() {
    it( 'reloadSession', async function() {
        await browser.reloadSession(  );
    } );
} );
*********************************************
Start selenium-standalone here
start cmd /C npx selenium-standalone start
*********************************************
Run test here
npx wdio run wdio.conf.js --spec reloadSessionBug.spec.js

Execution of 1 workers started at 2024-03-27T18:36:33.104Z

2024-03-27T18:36:33.209Z INFO @wdio/cli:launcher: Run onPrepare hook
2024-03-27T18:36:33.211Z INFO @wdio/cli:launcher: Run onWorkerStart hook
2024-03-27T18:36:33.213Z INFO @wdio/local-runner: Start worker 0-0 with arg: run,wdio.conf.js,--spec,reloadSessionBug.spec.js
2024-03-27T18:36:33.256Z DEBUG @wdio/local-runner: Send command run to worker with cid "0-0"
[0-0] 2024-03-27T18:36:40.546Z INFO @wdio/local-runner: Run worker command: run
[0-0] 2024-03-27T18:36:46.229Z DEBUG @wdio/runner: init remote session
[0-0] RUNNING in firefox - file:///C:/wdio/reloadSessionBug.spec.js
[0-0] 2024-03-27T18:36:46.580Z DEBUG @wdio/runner: init remote session
[0-0] 2024-03-27T18:36:46.581Z INFO webdriver: Initiate new session using the WebDriver protocol
[0-0] 2024-03-27T18:36:46.582Z INFO @wdio/utils: Connecting to existing driver at http://0.0.0.0:4444/wd/hub
[0-0] 2024-03-27T18:36:47.116Z INFO webdriver: [POST] http://0.0.0.0:4444/wd/hub/session
[0-0] 2024-03-27T18:36:47.116Z INFO webdriver: DATA {
[0-0]   capabilities: {
[0-0]     alwaysMatch: {
[0-0]       browserName: 'firefox',
[0-0]       acceptInsecureCerts: true,
[0-0]       'moz:firefoxOptions': [Object]
[0-0]     },
[0-0]     firstMatch: [ {} ]
[0-0]   },
[0-0]   desiredCapabilities: {
[0-0]     browserName: 'firefox',
[0-0]     acceptInsecureCerts: true,
[0-0]     'moz:firefoxOptions': { args: [], prefs: [Object] }
[0-0]   }
[0-0] }
[0-0] 2024-03-27T18:36:52.494Z DEBUG @wdio/utils:shim: Finished to run "beforeTest" hook in 0ms
[0-0] 2024-03-27T18:36:52.497Z INFO webdriver: COMMAND deleteSession(<object>)
[0-0] 2024-03-27T18:36:52.498Z INFO webdriver: [DELETE] http://0.0.0.0:4444/wd/hub/session/6aab4b3a-21f5-4162-afb0-79233f513d4a
[0-0] 2024-03-27T18:36:52.499Z INFO webdriver: DATA { deleteSessionOpts: { shutdownDriver: false } }
[0-0] Error in "reloadSession bug reloadSession"
    at listOnTimeout (node:internal/timers:569:17)
    at process.processTimers (node:internal/timers:512:7)
[0-0] 2024-03-27T18:37:52.513Z DEBUG @wdio/utils:shim: Finished to run "after" hook in 0ms
[0-0] 2024-03-27T18:37:52.514Z INFO webdriver: COMMAND deleteSession()
[0-0] 2024-03-27T18:37:52.514Z INFO webdriver: [DELETE] http://0.0.0.0:4444/wd/hub/session/6aab4b3a-21f5-4162-afb0-79233f513d4a
[0-0] 2024-03-27T18:37:53.854Z INFO webdriver: RESULT null
[0-0] 2024-03-27T18:37:53.919Z INFO webdriver: RESULT /session/6aab4b3a-21f5-4162-afb0-79233f513d4a
[0-0] 2024-03-27T18:37:53.932Z INFO webdriver: [POST] http://0.0.0.0:4444/wd/hub/session
[0-0] 2024-03-27T18:37:53.932Z INFO webdriver: DATA {
[0-0]   capabilities: {
[0-0]     alwaysMatch: {
[0-0]       browserName: 'firefox',
[0-0]       acceptInsecureCerts: true,
[0-0]       'moz:firefoxOptions': [Object]
[0-0]     },
[0-0]     firstMatch: [ {} ]
[0-0]   },
[0-0]   desiredCapabilities: {
[0-0]     browserName: 'firefox',
[0-0]     acceptInsecureCerts: true,
[0-0]     'moz:firefoxOptions': { args: [], prefs: [Object] }
[0-0]   }
[0-0] }
2024-03-27T18:37:53.981Z DEBUG @wdio/local-runner: Runner 0-0 finished with exit code 1
[0-0] FAILED in firefox - file:///C:/wdio/reloadSessionBug.spec.js
2024-03-27T18:37:53.982Z INFO @wdio/cli:launcher: Run onWorkerEnd hook
2024-03-27T18:37:53.983Z INFO @wdio/cli:launcher: Run onComplete hook

 "spec" Reporter:
------------------------------------------------------------------
[firefox 115.7.0 Windows 10 #0-0] Running: firefox (v115.7.0) on Windows 10
[firefox 115.7.0 Windows 10 #0-0] Session ID: 6aab4b3a-21f5-4162-afb0-79233f513d4a
[firefox 115.7.0 Windows 10 #0-0]
[firefox 115.7.0 Windows 10 #0-0] » \reloadSessionBug.spec.js
[firefox 115.7.0 Windows 10 #0-0] reloadSession bug
[firefox 115.7.0 Windows 10 #0-0]    ✖ reloadSession
[firefox 115.7.0 Windows 10 #0-0]
[firefox 115.7.0 Windows 10 #0-0] 1 failing (1m 1.3s)
[firefox 115.7.0 Windows 10 #0-0]
[firefox 115.7.0 Windows 10 #0-0] 1) reloadSession bug reloadSession
[firefox 115.7.0 Windows 10 #0-0] Error: Timeout
[firefox 115.7.0 Windows 10 #0-0]     at listOnTimeout (node:internal/timers:569:17)
[firefox 115.7.0 Windows 10 #0-0]     at process.processTimers (node:internal/timers:512:7)


Spec Files:      0 passed, 1 failed, 1 total (100% completed) in 00:01:20

2024-03-27T18:37:53.993Z INFO @wdio/local-runner: Shutting down spawned worker
2024-03-27T18:37:54.252Z INFO @wdio/local-runner: Waiting for 0 to shut down gracefully
2024-03-27T18:37:54.253Z INFO @wdio/local-runner: shutting down

C:\wdio>

Code of Conduct

  • I agree to follow this project's Code of Conduct

Is there an existing issue for this?

  • I have searched the existing issues
@BillAtRicoh BillAtRicoh added Bug 🐛 Needs Triaging ⏳ No one has looked into the issue yet labels Mar 27, 2024
@christian-bromann
Copy link
Member

The test hangs until the timeout expires, then the test fails.

Can you provide logs from the Selenium server?

@christian-bromann christian-bromann added Logs Missing and removed Needs Triaging ⏳ No one has looked into the issue yet labels Mar 27, 2024
@BillAtRicoh
Copy link
Author

selenium-standalone:env-details Platform: win32 10.0.22621 +0ms
selenium-standalone:env-details Architecture: x64 +1ms
selenium-standalone:env-details Node.js: v18.16.0 +1ms
selenium-standalone:env-details CWD: C:\wdio +0ms
selenium-standalone:env-details Module Path: C:\wdio\node_modules\selenium-standalone\lib +0ms
selenium-standalone:env-details Package Version: 9.4.0 +3ms
selenium-standalone:cli Started via CLI with: [
'C:\Apps\Dev\nodejs\node.exe',
'C:\wdio\node_modules\selenium-standalone\bin\selenium-standalone',
'start'
] +0ms
selenium-standalone:install Start API called with {
baseURL: 'https://github.com/SeleniumHQ/selenium/releases/download',
version: '4.9.0',
drivers: {
chrome: {
version: 'latest',
channel: 'stable',
arch: 'x64',
onlyDriverArgs: [],
baseURL: 'https://storage.googleapis.com/chrome-for-testing-public'
},
firefox: {
version: 'latest',
fallbackVersion: '0.30.0',
arch: 'x64',
onlyDriverArgs: [],
baseURL: 'https://github.com/mozilla/geckodriver/releases/download'
},
chromiumedge: {
version: 'latest',
fallbackVersion: '117.0.2045.55',
arch: 'x64',
onlyDriverArgs: [],
baseURL: 'https://msedgedriver.azureedge.net'
}
},
seleniumArgs: [],
spawnOptions: { stdio: 'inherit' },
logger: [Function: log],
javaPath: 'C:\java\jdk\bin\java.EXE'
} +0ms
selenium-standalone:start Spawning Selenium Server process C:\java\jdk\bin\java.EXE [
'-Dwebdriver.chrome.driver=C:\wdio\node_modules\selenium-standalone\.selenium\chromedriver\latest-win32\chromedriver.exe',
'-Dwebdriver.gecko.driver=C:\wdio\node_modules\selenium-standalone\.selenium\geckodriver\latest-win32\geckodriver.exe',
'-Dwebdriver.edge.driver=C:\wdio\node_modules\selenium-standalone\.selenium\chromiumedgedriver\latest-win32\msedgedriver.exe',
'-jar',
'C:\wdio\node_modules\selenium-standalone\.selenium\selenium-server\4.9.0\selenium-server.jar',
'standalone',
'-I',
'chrome',
'-I',
'firefox',
'-I',
'edge'
] +0ms
Failed to connect to selenium. Attempts left: 115
connect ECONNREFUSED 127.0.0.1:4444
15:20:20.446 INFO [LoggingOptions.configureLogEncoding] - Using the system default encoding
15:20:20.451 INFO [OpenTelemetryTracer.createTracer] - Using OpenTelemetry for tracing
Failed to connect to selenium. Attempts left: 110
connect ECONNREFUSED 127.0.0.1:4444
15:20:23.500 INFO [NodeOptions.getSessionFactories] - Detected 8 available processors
15:20:23.545 INFO [NodeOptions.discoverDrivers] - Driver(s) already present on the host: 3
15:20:23.582 INFO [NodeOptions.report] - Adding Chrome for {"browserName": "chrome","goog:chromeOptions": {"args": [ "--remote-allow-origins=" ] } } 8 times (Host)
15:20:23.588 INFO [NodeOptions.report] - Adding Edge for {"browserName": "MicrosoftEdge","ms:edgeOptions": {"args": [ "--remote-allow-origins=
" ] } } 8 times (Host)
15:20:23.589 INFO [NodeOptions.report] - Adding Firefox for {"browserName": "firefox"} 8 times (Host)
15:20:24.009 INFO [Node.] - Binding additional locator mechanisms: relative
15:20:24.031 INFO [GridModel.setAvailability] - Switching Node f810f39e-3797-42ed-aec1-b490ff9066d8 (uri: http://172.27.57.51:4444) from DOWN to UP
15:20:24.031 INFO [LocalDistributor.add] - Added node f810f39e-3797-42ed-aec1-b490ff9066d8 at http://172.27.57.51:4444. Health check every 120s
Failed to connect to selenium. Attempts left: 105
connect ECONNREFUSED 127.0.0.1:4444
15:20:25.435 INFO [Standalone.execute] - Started Selenium Standalone 4.9.0 (revision d7057100a6): http://172.27.57.51:4444
Selenium started
15:20:46.076 INFO [LocalDistributor.newSession] - Session request received by the Distributor:
[Capabilities {acceptInsecureCerts: true, browserName: firefox, moz:firefoxOptions: {args: [], prefs: {intl.accept_languages: en}}}]
1711574446341 geckodriver INFO Listening on 127.0.0.1:5823
1711574447122 mozrunner::runner INFO Running command: "C:\Program Files\Mozilla Firefox\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\Users\USERNAME\AppData\Local\Temp\rust_mozprofileM4VgC8"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1711574447789 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1711574448516 Marionette INFO Listening on port 64839
Read port: 64839
1711574448750 RemoteAgent WARN TLS certificate errors will be ignored for this session
15:20:50.385 INFO [LocalNode.newSession] - Session created by the Node. Id: e5b7e4db-4723-4249-8387-3cf5d01a18a7, Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 115.7.0, moz:accessibilityChecks: false, moz:buildID: 20240115170312, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 10.0, moz:processID: 37988, moz:profile: C:\Users\USERNAME\AppData\Loca..., moz:shutdownTimeout: 60000, moz:useNonSpecCompliantPointerOrigin: false, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: Windows 10, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
15:20:50.396 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: e5b7e4db-4723-4249-8387-3cf5d01a18a7
Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 115.7.0, moz:accessibilityChecks: false, moz:buildID: 20240115170312, moz:firefoxOptions: {args: [], prefs: {intl.accept_languages: en}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 10.0, moz:processID: 37988, moz:profile: C:\Users\USERNAME\AppData\Loca..., moz:shutdownTimeout: 60000, moz:useNonSpecCompliantPointerOrigin: false, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: Windows 10, proxy: Proxy(), se:bidi: ws://172.27.57.51:4444/sess..., se:cdp: ws://172.27.57.51:4444/sess..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
1711574477821 addons.xpi ERROR System addon update list error SyntaxError: The URI is malformed.
1711574510470 Marionette INFO Stopped listening on port 64839
Dynamically enable window occlusion 1
15:21:51.460 WARN [SpanWrappedHttpHandler.execute] - Unable to execute request: java.net.SocketException: Connection reset
java.io.UncheckedIOException: java.net.SocketException: Connection reset
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:73)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler$$Lambda$964/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:49)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:99)
at org.openqa.selenium.remote.tracing.TracedHttpClient.execute(TracedHttpClient.java:55)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.node.DefaultActiveSession.execute(DefaultActiveSession.java:53)
at org.openqa.selenium.grid.node.local.SessionSlot.execute(SessionSlot.java:127)
at org.openqa.selenium.grid.node.local.LocalNode.executeWebDriverCommand(LocalNode.java:583)
at org.openqa.selenium.grid.node.ForwardWebDriverCommand.execute(ForwardWebDriverCommand.java:35)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.tracing.SpanWrappedHttpHandler.execute(SpanWrappedHttpHandler.java:86)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.node.Node.execute(Node.java:255)
at org.openqa.selenium.grid.web.CombinedHandler.execute(CombinedHandler.java:59)
at org.openqa.selenium.grid.web.RoutableHttpClientFactory$1.execute(RoutableHttpClientFactory.java:72)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.router.Router.execute(Router.java:91)
at org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)
at org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)
at org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)
at org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758/0000000000000000.run(Unknown Source)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:847)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:345)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:376)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 more
15:21:51.464 WARN [SeleniumSpanExporter$1.lambda$export$1] - Unable to execute request: java.net.SocketException: Connection reset
15:21:51.464 WARN [SeleniumSpanExporter$1.lambda$export$1] - java.io.UncheckedIOException: java.net.SocketException: Connection reset
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:73)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler$$Lambda$964/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:49)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:99)
at org.openqa.selenium.remote.tracing.TracedHttpClient.execute(TracedHttpClient.java:55)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.node.DefaultActiveSession.execute(DefaultActiveSession.java:53)
at org.openqa.selenium.grid.node.local.SessionSlot.execute(SessionSlot.java:127)
at org.openqa.selenium.grid.node.local.LocalNode.executeWebDriverCommand(LocalNode.java:583)
at org.openqa.selenium.grid.node.ForwardWebDriverCommand.execute(ForwardWebDriverCommand.java:35)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.tracing.SpanWrappedHttpHandler.execute(SpanWrappedHttpHandler.java:86)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.node.Node.execute(Node.java:255)
at org.openqa.selenium.grid.web.CombinedHandler.execute(CombinedHandler.java:59)
at org.openqa.selenium.grid.web.RoutableHttpClientFactory$1.execute(RoutableHttpClientFactory.java:72)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.router.Router.execute(Router.java:91)
at org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)
at org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)
at org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)
at org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758/0000000000000000.run(Unknown Source)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:847)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:345)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:376)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 more

15:21:51.466 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "fe7ef3bcb62f060f3b1fa5090f6d8272","eventTime": 1711574511458979900,"eventName": "exception","attributes": {"exception.message": "Unable to execute request: java.net.SocketException: Connection reset","exception.stacktrace": "java.io.UncheckedIOException: java.net.SocketException: Connection reset\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:73)\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler$$Lambda$964\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)\r\n\tat org.openqa.selenium.remote.http.Filter$$Lambda$682\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:49)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)\r\n\tat org.openqa.selenium.remote.http.Filter$$Lambda$682\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:99)\r\n\tat org.openqa.selenium.remote.tracing.TracedHttpClient.execute(TracedHttpClient.java:55)\r\n\tat org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)\r\n\tat org.openqa.selenium.grid.node.DefaultActiveSession.execute(DefaultActiveSession.java:53)\r\n\tat org.openqa.selenium.grid.node.local.SessionSlot.execute(SessionSlot.java:127)\r\n\tat org.openqa.selenium.grid.node.local.LocalNode.executeWebDriverCommand(LocalNode.java:583)\r\n\tat org.openqa.selenium.grid.node.ForwardWebDriverCommand.execute(ForwardWebDriverCommand.java:35)\r\n\tat org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.tracing.SpanWrappedHttpHandler.execute(SpanWrappedHttpHandler.java:86)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.grid.node.Node.execute(Node.java:255)\r\n\tat org.openqa.selenium.grid.web.CombinedHandler.execute(CombinedHandler.java:59)\r\n\tat org.openqa.selenium.grid.web.RoutableHttpClientFactory$1.execute(RoutableHttpClientFactory.java:72)\r\n\tat org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)\r\n\tat org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)\r\n\tat org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.grid.router.Router.execute(Router.java:91)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758\u002f0000000000000000.run(Unknown Source)\r\n\tat java.base\u002fjava.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)\r\n\tat java.base\u002fjava.util.concurrent.FutureTask.run(FutureTask.java:264)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\r\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:847)\r\nCaused by: java.net.SocketException: Connection reset\r\n\tat java.base\u002fsun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:345)\r\n\tat java.base\u002fsun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:376)\r\n\tat io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)\r\n\tat io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)\r\n\tat io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)\r\n\tat io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)\r\n\tat io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)\r\n\tat io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)\r\n\tat io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)\r\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\r\n\t... 1 more\r\n","exception.type": "java.io.UncheckedIOException","http.flavor": 1,"http.handler_class": "org.openqa.selenium.remote.http.Route$PredicatedRoute","http.host": "0.0.0.0:4444","http.method": "DELETE","http.request_content_length": "46","http.scheme": "HTTP","http.target": "\u002fsession\u002fe5b7e4db-4723-4249-8387-3cf5d01a18a7","http.user_agent": "webdriver\u002f8.35.0"}}

15:21:51.469 WARN [SeleniumSpanExporter$1.lambda$export$1] - Unable to execute request for an existing session: java.net.SocketException: Connection reset
15:21:51.469 WARN [SeleniumSpanExporter$1.lambda$export$1] - java.io.UncheckedIOException: java.net.SocketException: Connection reset
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:73)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler$$Lambda$964/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:49)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
at org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
at org.openqa.selenium.remote.http.Filter$$Lambda$682/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:99)
at org.openqa.selenium.remote.tracing.TracedHttpClient.execute(TracedHttpClient.java:55)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.node.DefaultActiveSession.execute(DefaultActiveSession.java:53)
at org.openqa.selenium.grid.node.local.SessionSlot.execute(SessionSlot.java:127)
at org.openqa.selenium.grid.node.local.LocalNode.executeWebDriverCommand(LocalNode.java:583)
at org.openqa.selenium.grid.node.ForwardWebDriverCommand.execute(ForwardWebDriverCommand.java:35)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.tracing.SpanWrappedHttpHandler.execute(SpanWrappedHttpHandler.java:86)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.node.Node.execute(Node.java:255)
at org.openqa.selenium.grid.web.CombinedHandler.execute(CombinedHandler.java:59)
at org.openqa.selenium.grid.web.RoutableHttpClientFactory$1.execute(RoutableHttpClientFactory.java:72)
at org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)
at org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.router.Router.execute(Router.java:91)
at org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)
at org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)
at org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)
at org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758/0000000000000000.run(Unknown Source)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:847)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:345)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:376)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 more

15:21:51.471 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "fe7ef3bcb62f060f3b1fa5090f6d8272","eventTime": 1711574511468497100,"eventName": "exception","attributes": {"exception.message": "Unable to execute request for an existing session: java.net.SocketException: Connection reset","exception.stacktrace": "java.io.UncheckedIOException: java.net.SocketException: Connection reset\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:73)\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler$$Lambda$964\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)\r\n\tat org.openqa.selenium.remote.http.Filter$$Lambda$682\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:49)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)\r\n\tat org.openqa.selenium.remote.http.AddSeleniumUserAgent$$Lambda$972\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)\r\n\tat org.openqa.selenium.remote.http.Filter$$Lambda$682\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:99)\r\n\tat org.openqa.selenium.remote.tracing.TracedHttpClient.execute(TracedHttpClient.java:55)\r\n\tat org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)\r\n\tat org.openqa.selenium.grid.node.DefaultActiveSession.execute(DefaultActiveSession.java:53)\r\n\tat org.openqa.selenium.grid.node.local.SessionSlot.execute(SessionSlot.java:127)\r\n\tat org.openqa.selenium.grid.node.local.LocalNode.executeWebDriverCommand(LocalNode.java:583)\r\n\tat org.openqa.selenium.grid.node.ForwardWebDriverCommand.execute(ForwardWebDriverCommand.java:35)\r\n\tat org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.tracing.SpanWrappedHttpHandler.execute(SpanWrappedHttpHandler.java:86)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.grid.node.Node.execute(Node.java:255)\r\n\tat org.openqa.selenium.grid.web.CombinedHandler.execute(CombinedHandler.java:59)\r\n\tat org.openqa.selenium.grid.web.RoutableHttpClientFactory$1.execute(RoutableHttpClientFactory.java:72)\r\n\tat org.openqa.selenium.grid.web.ReverseProxyHandler.execute(ReverseProxyHandler.java:92)\r\n\tat org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)\r\n\tat org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.grid.router.Router.execute(Router.java:91)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758\u002f0000000000000000.run(Unknown Source)\r\n\tat java.base\u002fjava.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)\r\n\tat java.base\u002fjava.util.concurrent.FutureTask.run(FutureTask.java:264)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\r\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:847)\r\nCaused by: java.net.SocketException: Connection reset\r\n\tat java.base\u002fsun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:345)\r\n\tat java.base\u002fsun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:376)\r\n\tat io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)\r\n\tat io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)\r\n\tat io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)\r\n\tat io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)\r\n\tat io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)\r\n\tat io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)\r\n\tat io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)\r\n\tat io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)\r\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\r\n\t... 1 more\r\n","exception.type": "java.io.UncheckedIOException","http.flavor": 1,"http.handler_class": "org.openqa.selenium.grid.router.HandleSession","http.host": "0.0.0.0:4444","http.method": "DELETE","http.request_content_length": "46","http.scheme": "HTTP","http.target": "\u002fsession\u002fe5b7e4db-4723-4249-8387-3cf5d01a18a7","http.user_agent": "webdriver\u002f8.35.0","session.id": "e5b7e4db-4723-4249-8387-3cf5d01a18a7"}}

15:21:51.520 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: e5b7e4db-4723-4249-8387-3cf5d01a18a7
15:21:51.521 INFO [GridModel.release] - Releasing slot for session id e5b7e4db-4723-4249-8387-3cf5d01a18a7
15:21:51.521 INFO [SessionSlot.stop] - Stopping session e5b7e4db-4723-4249-8387-3cf5d01a18a7
15:21:51.596 WARN [SeleniumSpanExporter$1.lambda$export$1] - Unable to execute request for an existing session: Unable to find session with ID: e5b7e4db-4723-4249-8387-3cf5d01a18a7
Build info: version: '4.9.0', revision: 'd7057100a6'
System info: os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '13.0.2'
Driver info: driver.version: unknown
15:21:51.597 WARN [SeleniumSpanExporter$1.lambda$export$1] - org.openqa.selenium.NoSuchSessionException: Unable to find session with ID: e5b7e4db-4723-4249-8387-3cf5d01a18a7
Build info: version: '4.9.0', revision: 'd7057100a6'
System info: os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '13.0.2'
Driver info: driver.version: unknown
at org.openqa.selenium.grid.sessionmap.local.LocalSessionMap.get(LocalSessionMap.java:129)
at org.openqa.selenium.grid.router.HandleSession.lambda$loadSessionId$4(HandleSession.java:163)
at org.openqa.selenium.grid.router.HandleSession$$Lambda$1054/0000000000000000.call(Unknown Source)
at io.opentelemetry.context.Context.lambda$wrap$2(Context.java:224)
at io.opentelemetry.context.Context$$Lambda$791/0000000000000000.call(Unknown Source)
at org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)
at org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.grid.router.Router.execute(Router.java:91)
at org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)
at org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)
at org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)
at org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)
at org.openqa.selenium.remote.http.Route.execute(Route.java:68)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)
at org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)
at org.openqa.selenium.remote.ErrorFilter$$Lambda$760/0000000000000000.execute(Unknown Source)
at org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)
at org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)
at org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758/0000000000000000.run(Unknown Source)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:847)

15:21:51.598 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "f5bed40303c85dc123a291a55b890789","eventTime": 1711574511596415500,"eventName": "exception","attributes": {"exception.message": "Unable to execute request for an existing session: Unable to find session with ID: e5b7e4db-4723-4249-8387-3cf5d01a18a7\nBuild info: version: '4.9.0', revision: 'd7057100a6'\nSystem info: os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '13.0.2'\nDriver info: driver.version: unknown","exception.stacktrace": "org.openqa.selenium.NoSuchSessionException: Unable to find session with ID: e5b7e4db-4723-4249-8387-3cf5d01a18a7\nBuild info: version: '4.9.0', revision: 'd7057100a6'\nSystem info: os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '13.0.2'\nDriver info: driver.version: unknown\r\n\tat org.openqa.selenium.grid.sessionmap.local.LocalSessionMap.get(LocalSessionMap.java:129)\r\n\tat org.openqa.selenium.grid.router.HandleSession.lambda$loadSessionId$4(HandleSession.java:163)\r\n\tat org.openqa.selenium.grid.router.HandleSession$$Lambda$1054\u002f0000000000000000.call(Unknown Source)\r\n\tat io.opentelemetry.context.Context.lambda$wrap$2(Context.java:224)\r\n\tat io.opentelemetry.context.Context$$Lambda$791\u002f0000000000000000.call(Unknown Source)\r\n\tat org.openqa.selenium.grid.router.HandleSession.execute(HandleSession.java:122)\r\n\tat org.openqa.selenium.remote.http.Route$PredicatedRoute.handle(Route.java:373)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.grid.router.Router.execute(Router.java:91)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader.lambda$apply$0(CheckOriginHeader.java:66)\r\n\tat org.openqa.selenium.grid.web.CheckOriginHeader$$Lambda$776\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader.lambda$apply$0(CheckContentTypeHeader.java:70)\r\n\tat org.openqa.selenium.grid.web.CheckContentTypeHeader$$Lambda$777\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders.lambda$apply$0(EnsureSpecCompliantResponseHeaders.java:34)\r\n\tat org.openqa.selenium.grid.web.EnsureSpecCompliantResponseHeaders$$Lambda$778\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$NestedRoute.handle(Route.java:270)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.http.Route$CombinedRoute.handle(Route.java:336)\r\n\tat org.openqa.selenium.remote.http.Route.execute(Route.java:68)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders.lambda$apply$0(AddWebDriverSpecHeaders.java:35)\r\n\tat org.openqa.selenium.remote.AddWebDriverSpecHeaders$$Lambda$762\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.remote.ErrorFilter.lambda$apply$0(ErrorFilter.java:44)\r\n\tat org.openqa.selenium.remote.ErrorFilter$$Lambda$760\u002f0000000000000000.execute(Unknown Source)\r\n\tat org.openqa.selenium.remote.http.Filter$1.execute(Filter.java:64)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler.lambda$channelRead0$0(SeleniumHandler.java:44)\r\n\tat org.openqa.selenium.netty.server.SeleniumHandler$$Lambda$758\u002f0000000000000000.run(Unknown Source)\r\n\tat java.base\u002fjava.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)\r\n\tat java.base\u002fjava.util.concurrent.FutureTask.run(FutureTask.java:264)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\r\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\r\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:847)\r\n","exception.type": "org.openqa.selenium.NoSuchSessionException","http.flavor": 1,"http.handler_class": "org.openqa.selenium.grid.router.HandleSession","http.host": "0.0.0.0:4444","http.method": "DELETE","http.request_content_length": "46","http.scheme": "HTTP","http.target": "\u002fsession\u002fe5b7e4db-4723-4249-8387-3cf5d01a18a7","http.user_agent": "webdriver\u002f8.35.0","session.id": "e5b7e4db-4723-4249-8387-3cf5d01a18a7"}}

15:21:51.628 INFO [LocalDistributor.newSession] - Session request received by the Distributor:
[Capabilities {acceptInsecureCerts: true, browserName: firefox, moz:firefoxOptions: {args: [], prefs: {intl.accept_languages: en}}}]
1711574511861 geckodriver INFO Listening on 127.0.0.1:4690
1711574512366 mozrunner::runner INFO Running command: "C:\Program Files\Mozilla Firefox\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\Users\USERNAME\AppData\Local\Temp\rust_mozprofilejnqKnb"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1711574513011 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1711574513499 Marionette INFO Listening on port 64919
Read port: 64919
1711574513670 RemoteAgent WARN TLS certificate errors will be ignored for this session
15:21:55.167 INFO [LocalNode.newSession] - Session created by the Node. Id: 65826c2b-11a9-47a5-b5b8-b621bf072c41, Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 115.7.0, moz:accessibilityChecks: false, moz:buildID: 20240115170312, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 10.0, moz:processID: 20740, moz:profile: C:\Users\USERNAME\AppData\Loca..., moz:shutdownTimeout: 60000, moz:useNonSpecCompliantPointerOrigin: false, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: Windows 10, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
15:21:55.172 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 65826c2b-11a9-47a5-b5b8-b621bf072c41
Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 115.7.0, moz:accessibilityChecks: false, moz:buildID: 20240115170312, moz:firefoxOptions: {args: [], prefs: {intl.accept_languages: en}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 10.0, moz:processID: 20740, moz:profile: C:\Users\USERNAME\AppData\Loca..., moz:shutdownTimeout: 60000, moz:useNonSpecCompliantPointerOrigin: false, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: Windows 10, proxy: Proxy(), se:bidi: ws://172.27.57.51:4444/sess..., se:cdp: ws://172.27.57.51:4444/sess..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
1711574538332 Marionette INFO Stopped listening on port 64919
Dynamically enable window occlusion 1
JavaScript error: chrome://remote/content/marionette/cert.sys.mjs, line 51: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
console.error: (new AbortError("IndexedDB: main/url-classifier-skip-urls list() IndexedDB: execute() A request was aborted, for example through a call to IDBTransaction.abort.", "resource://services-settings/IDBHelpers.jsm", 18))

@BillAtRicoh
Copy link
Author

Let me know if selenium-server can provide more detailed logs and how to get them.

@christian-bromann christian-bromann added Needs Investigation Issues that require more information on the problem. and removed Logs Missing labels Mar 27, 2024
@christian-bromann
Copy link
Member

@BillAtRicoh thanks for providing the logs. I labelled the issue as Needs Investigation. We would appreciate any help in this case. I don't think that me or any of the maintainers have capacity to look into this anytime soon, so any help from your side would be appreciated.

@christian-bromann christian-bromann added the help wanted Issues that are free to take by anyone interested label Mar 27, 2024
@wdio-bot
Copy link
Contributor

Thanks for reporting!

We greatly appreciate any contributions that help resolve the bug. While we understand that active contributors have their own priorities, we kindly request your assistance if you rely on this bug being fixed. We encourage you to take a look at our contribution guidelines or join our friendly Discord development server, where you can ask any questions you may have. Thank you for your support, and cheers!

@ccharnkij
Copy link
Contributor

@BillAtRicoh You are using selenium-server v4.9.0, correct? Try using higher version instead. I tested with v4.20 and it went well. I think the issue is the reloadSession function, specifically how selenium handles the shutdownDriver field passed by wdio. If you delete session without the shutdownDriver field, it should be ok. With the field, it hangs. So try v4.20.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug 🐛 help wanted Issues that are free to take by anyone interested Needs Investigation Issues that require more information on the problem.
Projects
None yet
Development

No branches or pull requests

4 participants