I try to run tests in 2 parallel threads and I get tests run freezing:

driver = new ChromeDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), chromeOptions, TimeSpan.FromMinutes(3));
IDevTools _devTools = driver as IDevTools;
IDevToolsSession _session = _devTools.GetDevToolsSession(); // the problem is here
V96.Fetch.FetchAdapter _fetch = _session.GetVersionSpecificDomains<V96.DevToolsSessionDomains>().Fetch;
When running tests in 1 thread, they passed success.
Please, help me to fix it. :)
Thanks in advance. :)