SeleniumHQ / selenium

A browser automation framework and ecosystem.
https://selenium.dev
Apache License 2.0
30.68k stars 8.19k forks source link

[🐛 Bug]: Unable to obtain chrome using Selenium Manager #12796

Closed eseger13 closed 1 year ago

eseger13 commented 1 year ago

What happened?

I'm using Selenium.Webdriver 4.12.4 in a C# project and attempting to utilize the automatic setup of the Chrome Driver. I am following the documentation to use "WebDriver chromeDriver = new ChromeDriver();" to allow the Selenium Manager to find and download the binaries for the latest driver. I'm consistently getting the error "Unable to obtain chrome using Selenium Manager" and when I link to the documentation, it states this should work and I should report an issue if it isn't. I can't provide logging since this is a C# project.

I noticed in the stack trace the following line that makes me think I'm missing something, but I'm not sure what the solve would be to address. Unable to locate or obtain Selenium Manager binary at C:\Users\eseger.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0\selenium-manager/windows/selenium-manager.exe

How can we reproduce the issue?

WebDriver chromeDriver = new ChromeDriver();

Relevant log output

OpenQA.Selenium.NoSuchDriverException: Unable to obtain chrome using Selenium Manager; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
 ---> System.TypeInitializationException: The type initializer for 'OpenQA.Selenium.SeleniumManager' threw an exception.
 ---> OpenQA.Selenium.WebDriverException: Unable to locate or obtain Selenium Manager binary at C:\Users\eseger\.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0\selenium-manager/windows/selenium-manager.exe
   at OpenQA.Selenium.SeleniumManager..cctor()
   --- End of inner exception stack trace ---
   at OpenQA.Selenium.SeleniumManager.DriverPath(DriverOptions options)
   at OpenQA.Selenium.DriverFinder.FullPath(DriverOptions options)
   --- End of inner exception stack trace ---
   at OpenQA.Selenium.DriverFinder.FullPath(DriverOptions options)
   at OpenQA.Selenium.Chromium.ChromiumDriver.GenerateDriverServiceCommandExecutor(DriverService service, DriverOptions options, TimeSpan commandTimeout)
   at OpenQA.Selenium.Chromium.ChromiumDriver..ctor(ChromiumDriverService service, ChromiumOptions options, TimeSpan commandTimeout)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor(ChromeDriverService service, ChromeOptions options, TimeSpan commandTimeout)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor(ChromeOptions options)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor()
   at external_user_create_ui_interaction.Services.ProcessInBrowser.GetChromeDriver() in C:\Users\eseger\source\repos\HarvestGroup\external-user-create-ui-interaction\external-user-create-ui-interaction\Services\ProcessInBrowser.cs:line 102

Operating System

Windows 11

Selenium version

DotNet Core 6.0

What are the browser(s) and version(s) where you see this issue?

Chrome 117

What are the browser driver(s) and version(s) where you see this issue?

I would expect ChromeDriver 117.0.5938.88 to download.

Are you using Selenium Grid?

No

github-actions[bot] commented 1 year ago

@eseger13, thank you for creating this issue. We will troubleshoot it as soon as we can.


Info for maintainers

Triage this issue by using labels.

If information is missing, add a helpful comment and then I-issue-template label.

If the issue is a question, add the I-question label.

If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label.

If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C), add the applicable G-* label, and it will provide the correct link and auto-close the issue.

After troubleshooting the issue, please add the R-awaiting answer label.

Thank you!

nvborisenko commented 1 year ago

@eseger13 to resolve the issue we need to understand your project context. I see you use something related to AzureTools and IntelliJ. Can you elaborate more about your use case?

This issue is purely close to that selenium cannot understand the context where it is ran. We use AppContext.BaseDirectory to determine the current location where it's located. Most likely we should improve it.

Is it possible to put this line of code in your application just to see output:

Console.WriteLine(AppContext.BaseDirectory); // or any other output mechanism that works for you

Also, please share list of folders/files in C:\Users\eseger\.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0 folder.

eseger13 commented 1 year ago

@nvborisenko the project is an azure function running in a docker container in production. The container was getting the chromedriver from https://chromedriver.storage.googleapis.com, but since that's only supported through 114 I'm trying to get the project to point to the latest chromedriver for the latest chrome version on image build. My local environment has the updated version of Chrome 117 and when I'm running the line of code mentioned in the initial request, I'm simply getting the error "Unable to obtain chrome using Selenium Manager".

I'm working in the Rider IDE using the Azure SDK.

This is my AppContext.BaseDirectory output. C:\Users\eseger.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0\

Mode LastWriteTime Length Name


d----- 9/15/2023 1:38 PM cs d----- 9/15/2023 1:38 PM de d----- 9/15/2023 1:38 PM es d----- 9/15/2023 1:38 PM fr d----- 9/15/2023 1:38 PM it d----- 9/15/2023 1:38 PM ja d----- 9/15/2023 1:38 PM ko d----- 9/15/2023 1:38 PM pl d----- 9/15/2023 1:38 PM pt-BR d----- 9/15/2023 1:38 PM ru d----- 9/15/2023 1:38 PM templates d----- 9/15/2023 1:38 PM tools d----- 9/15/2023 1:38 PM tr d----- 9/15/2023 1:38 PM workers d----- 9/15/2023 1:38 PM zh-Hans d----- 9/15/2023 1:38 PM zh-Hant d----- 9/15/2023 1:38 PM _manifest -a---- 9/15/2023 1:38 PM 52800 AccentedCommandLineParser.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-console-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-console-l1-2-0.dll -a---- 9/15/2023 1:38 PM 20952 api-ms-win-core-datetime-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-debug-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-errorhandling-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-fibers-l1-1-0.dll -a---- 9/15/2023 1:38 PM 25048 api-ms-win-core-file-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-file-l1-2-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-file-l2-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-handle-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-heap-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-interlocked-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-libraryloader-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-localization-l1-2-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-memory-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-namedpipe-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-processenvironment-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-processthreads-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-processthreads-l1-1-1.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-profile-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-rtlsupport-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20960 api-ms-win-core-string-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-synch-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-synch-l1-2-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-sysinfo-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-timezone-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-core-util-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-conio-l1-1-0.dll -a---- 9/15/2023 1:38 PM 25056 api-ms-win-crt-convert-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-environment-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-filesystem-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-heap-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-locale-l1-1-0.dll -a---- 9/15/2023 1:38 PM 29144 api-ms-win-crt-math-l1-1-0.dll -a---- 9/15/2023 1:38 PM 29136 api-ms-win-crt-multibyte-l1-1-0.dll -a---- 9/15/2023 1:38 PM 74192 api-ms-win-crt-private-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-process-l1-1-0.dll -a---- 9/15/2023 1:38 PM 25040 api-ms-win-crt-runtime-l1-1-0.dll -a---- 9/15/2023 1:38 PM 25040 api-ms-win-crt-stdio-l1-1-0.dll -a---- 9/15/2023 1:38 PM 25040 api-ms-win-crt-string-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-time-l1-1-0.dll -a---- 9/15/2023 1:38 PM 20944 api-ms-win-crt-utility-l1-1-0.dll -a---- 9/15/2023 1:38 PM 352888 aspnetcorev2_inprocess.dll -a---- 9/15/2023 1:38 PM 227784 Autofac.dll -a---- 9/15/2023 1:38 PM 321424 Azure.Core.dll -a---- 9/15/2023 1:38 PM 294288 Azure.Identity.dll -a---- 9/15/2023 1:38 PM 109456 Azure.Security.KeyVault.Secrets.dll -a---- 9/15/2023 1:38 PM 1205664 Azure.Storage.Blobs.dll -a---- 9/15/2023 1:38 PM 171440 Azure.Storage.Common.dll -a---- 9/15/2023 1:38 PM 304800 clretwrc.dll -a---- 9/15/2023 1:38 PM 1436848 clrjit.dll -a---- 9/15/2023 1:38 PM 19400 Colors.Net.dll -a---- 9/15/2023 1:38 PM 5125792 coreclr.dll -a---- 9/15/2023 1:38 PM 57576 createdump.exe -a---- 9/15/2023 1:38 PM 140448 dbgshim.dll -a---- 9/15/2023 1:38 PM 249912 DotNetZip.dll -a---- 9/15/2023 1:38 PM 280512 DurableTask.AzureStorage.Internal.dll -a---- 9/15/2023 1:38 PM 184752 DurableTask.Core.Internal.dll -a---- 9/15/2023 1:38 PM 177728 Dynamitey.dll -a---- 9/15/2023 1:38 PM 288967 func.deps.json -a---- 9/15/2023 1:38 PM 1800112 func.dll -a---- 9/15/2023 1:38 PM 12439 func.dll.config -a---- 9/15/2023 1:38 PM 219568 func.exe -a---- 9/15/2023 1:38 PM 219720 func.pdb -a---- 9/15/2023 1:38 PM 461 func.runtimeconfig.json -a---- 9/15/2023 1:38 PM 443672 Google.Protobuf.dll -a---- 9/15/2023 1:38 PM 2571200 gozip.exe -a---- 9/15/2023 1:38 PM 28952 Grpc.AspNetCore.Server.ClientFactory.dll -a---- 9/15/2023 1:38 PM 144152 Grpc.AspNetCore.Server.dll -a---- 9/15/2023 1:38 PM 61720 Grpc.Core.Api.dll -a---- 9/15/2023 1:38 PM 278296 Grpc.Net.Client.dll -a---- 9/15/2023 1:38 PM 48920 Grpc.Net.ClientFactory.dll -a---- 9/15/2023 1:38 PM 22296 Grpc.Net.Common.dll -a---- 9/15/2023 1:38 PM 375456 hostfxr.dll -a---- 9/15/2023 1:38 PM 392352 hostpolicy.dll -a---- 9/15/2023 1:38 PM 81352 ImpromptuInterface.dll -a---- 9/15/2023 1:38 PM 1495800 libMonoPosixHelper.dll -a---- 9/15/2023 1:38 PM 133552 Microsoft.AI.DependencyCollector.dll -a---- 9/15/2023 1:38 PM 43424 Microsoft.AI.EventCounterCollector.dll -a---- 9/15/2023 1:38 PM 215472 Microsoft.AI.PerfCounterCollector.dll -a---- 9/15/2023 1:38 PM 120240 Microsoft.AI.ServerTelemetryChannel.dll -a---- 9/15/2023 1:38 PM 71072 Microsoft.AI.WindowsServer.dll -a---- 9/15/2023 1:38 PM 104880 Microsoft.ApplicationInsights.AspNetCore.dll -a---- 9/15/2023 1:38 PM 385456 Microsoft.ApplicationInsights.dll -a---- 9/15/2023 1:38 PM 4435888 Microsoft.ApplicationInsights.SnapshotCollector.dll -a---- 9/15/2023 1:38 PM 101496 Microsoft.AspNetCore.Antiforgery.dll -a---- 9/15/2023 1:38 PM 53896 Microsoft.AspNetCore.Authentication.Abstractions.dll -a---- 9/15/2023 1:38 PM 106144 Microsoft.AspNetCore.Authentication.Cookies.dll -a---- 9/15/2023 1:38 PM 80544 Microsoft.AspNetCore.Authentication.Core.dll -a---- 9/15/2023 1:38 PM 145568 Microsoft.AspNetCore.Authentication.dll -a---- 9/15/2023 1:38 PM 40552 Microsoft.AspNetCore.Authentication.JwtBearer.dll -a---- 9/15/2023 1:38 PM 95872 Microsoft.AspNetCore.Authentication.OAuth.dll -a---- 9/15/2023 1:38 PM 87200 Microsoft.AspNetCore.Authorization.dll -a---- 9/15/2023 1:38 PM 57464 Microsoft.AspNetCore.Authorization.Policy.dll -a---- 9/15/2023 1:38 PM 47264 Microsoft.AspNetCore.Components.Authorization.dll -a---- 9/15/2023 1:38 PM 552096 Microsoft.AspNetCore.Components.dll -a---- 9/15/2023 1:38 PM 62584 Microsoft.AspNetCore.Components.Forms.dll -a---- 9/15/2023 1:38 PM 718472 Microsoft.AspNetCore.Components.Server.dll -a---- 9/15/2023 1:38 PM 285816 Microsoft.AspNetCore.Components.Web.dll -a---- 9/15/2023 1:38 PM 65672 Microsoft.AspNetCore.Connections.Abstractions.dll -a---- 9/15/2023 1:38 PM 48776 Microsoft.AspNetCore.CookiePolicy.dll -a---- 9/15/2023 1:38 PM 80032 Microsoft.AspNetCore.Cors.dll -a---- 9/15/2023 1:38 PM 67720 Microsoft.AspNetCore.Cryptography.Internal.dll -a---- 9/15/2023 1:38 PM 34936 Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -a---- 9/15/2023 1:38 PM 40064 Microsoft.AspNetCore.DataProtection.Abstractions.dll -a---- 9/15/2023 1:38 PM 416888 Microsoft.AspNetCore.DataProtection.dll -a---- 9/15/2023 1:38 PM 38560 Microsoft.AspNetCore.DataProtection.Extensions.dll -a---- 9/15/2023 1:38 PM 23712 Microsoft.AspNetCore.Diagnostics.Abstractions.dll -a---- 9/15/2023 1:38 PM 394872 Microsoft.AspNetCore.Diagnostics.dll -a---- 9/15/2023 1:38 PM 42656 Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -a---- 9/15/2023 1:38 PM 103544 Microsoft.AspNetCore.dll -a---- 9/15/2023 1:38 PM 36984 Microsoft.AspNetCore.HostFiltering.dll -a---- 9/15/2023 1:38 PM 33912 Microsoft.AspNetCore.Hosting.Abstractions.dll -a---- 9/15/2023 1:38 PM 380064 Microsoft.AspNetCore.Hosting.dll -a---- 9/15/2023 1:38 PM 20096 Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -a---- 9/15/2023 1:38 PM 31904 Microsoft.AspNetCore.Html.Abstractions.dll -a---- 9/15/2023 1:38 PM 224416 Microsoft.AspNetCore.Http.Abstractions.dll -a---- 9/15/2023 1:38 PM 46200 Microsoft.AspNetCore.Http.Connections.Common.dll -a---- 9/15/2023 1:38 PM 281216 Microsoft.AspNetCore.Http.Connections.dll -a---- 9/15/2023 1:38 PM 261792 Microsoft.AspNetCore.Http.dll -a---- 9/15/2023 1:38 PM 305784 Microsoft.AspNetCore.Http.Extensions.dll -a---- 9/15/2023 1:38 PM 59040 Microsoft.AspNetCore.Http.Features.dll -a---- 9/15/2023 1:38 PM 146096 Microsoft.AspNetCore.Http.Results.dll -a---- 9/15/2023 1:38 PM 159344 Microsoft.AspNetCore.HttpLogging.dll -a---- 9/15/2023 1:38 PM 64176 Microsoft.AspNetCore.HttpOverrides.dll -a---- 9/15/2023 1:38 PM 41096 Microsoft.AspNetCore.HttpsPolicy.dll -a---- 9/15/2023 1:38 PM 197752 Microsoft.AspNetCore.Identity.dll -a---- 9/15/2023 1:38 PM 54912 Microsoft.AspNetCore.JsonPatch.dll -a---- 9/15/2023 1:38 PM 56952 Microsoft.AspNetCore.Localization.dll -a---- 9/15/2023 1:38 PM 21624 Microsoft.AspNetCore.Localization.Routing.dll -a---- 9/15/2023 1:38 PM 18040 Microsoft.AspNetCore.Metadata.dll -a---- 9/15/2023 1:38 PM 205960 Microsoft.AspNetCore.Mvc.Abstractions.dll -a---- 9/15/2023 1:38 PM 140920 Microsoft.AspNetCore.Mvc.ApiExplorer.dll -a---- 9/15/2023 1:38 PM 1882272 Microsoft.AspNetCore.Mvc.Core.dll -a---- 9/15/2023 1:38 PM 46200 Microsoft.AspNetCore.Mvc.Cors.dll -a---- 9/15/2023 1:38 PM 103544 Microsoft.AspNetCore.Mvc.DataAnnotations.dll -a---- 9/15/2023 1:38 PM 32928 Microsoft.AspNetCore.Mvc.dll -a---- 9/15/2023 1:38 PM 17016 Microsoft.AspNetCore.Mvc.Formatters.Json.dll -a---- 9/15/2023 1:38 PM 113272 Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -a---- 9/15/2023 1:38 PM 42632 Microsoft.AspNetCore.Mvc.Localization.dll -a---- 9/15/2023 1:38 PM 66688 Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -a---- 9/15/2023 1:38 PM 240776 Microsoft.AspNetCore.Mvc.Razor.dll -a---- 9/15/2023 1:38 PM 88056 Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -a---- 9/15/2023 1:38 PM 452216 Microsoft.AspNetCore.Mvc.RazorPages.dll -a---- 9/15/2023 1:38 PM 276600 Microsoft.AspNetCore.Mvc.TagHelpers.dll -a---- 9/15/2023 1:38 PM 792184 Microsoft.AspNetCore.Mvc.ViewFeatures.dll -a---- 9/15/2023 1:38 PM 63864 Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll -a---- 9/15/2023 1:38 PM 62600 Microsoft.AspNetCore.Razor.dll -a---- 9/15/2023 1:38 PM 469496 Microsoft.AspNetCore.Razor.Language.dll -a---- 9/15/2023 1:38 PM 63616 Microsoft.AspNetCore.Razor.Runtime.dll -a---- 9/15/2023 1:38 PM 18552 Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -a---- 9/15/2023 1:38 PM 144544 Microsoft.AspNetCore.ResponseCaching.dll -a---- 9/15/2023 1:38 PM 74360 Microsoft.AspNetCore.ResponseCompression.dll -a---- 9/15/2023 1:38 PM 212600 Microsoft.AspNetCore.Rewrite.dll -a---- 9/15/2023 1:38 PM 53368 Microsoft.AspNetCore.Routing.Abstractions.dll -a---- 9/15/2023 1:38 PM 737928 Microsoft.AspNetCore.Routing.dll -a---- 9/15/2023 1:38 PM 556664 Microsoft.AspNetCore.Server.HttpSys.dll -a---- 9/15/2023 1:38 PM 608392 Microsoft.AspNetCore.Server.IIS.dll -a---- 9/15/2023 1:38 PM 44192 Microsoft.AspNetCore.Server.IISIntegration.dll -a---- 9/15/2023 1:38 PM 2086520 Microsoft.AspNetCore.Server.Kestrel.Core.dll -a---- 9/15/2023 1:38 PM 23672 Microsoft.AspNetCore.Server.Kestrel.dll -a---- 9/15/2023 1:38 PM 210592 Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -a---- 9/15/2023 1:38 PM 151672 Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -a---- 9/15/2023 1:38 PM 83576 Microsoft.AspNetCore.Session.dll -a---- 9/15/2023 1:38 PM 75384 Microsoft.AspNetCore.SignalR.Common.dll -a---- 9/15/2023 1:38 PM 396424 Microsoft.AspNetCore.SignalR.Core.dll -a---- 9/15/2023 1:38 PM 28280 Microsoft.AspNetCore.SignalR.dll -a---- 9/15/2023 1:38 PM 69752 Microsoft.AspNetCore.SignalR.Protocols.Json.dll -a---- 9/15/2023 1:38 PM 153720 Microsoft.AspNetCore.StaticFiles.dll -a---- 9/15/2023 1:38 PM 64640 Microsoft.AspNetCore.WebSockets.dll -a---- 9/15/2023 1:38 PM 248952 Microsoft.AspNetCore.WebUtilities.dll -a---- 9/15/2023 1:38 PM 79800 Microsoft.Azure.AppService.Middleware.dll -a---- 9/15/2023 1:38 PM 18360 Microsoft.Azure.AppService.Middleware.Functions.dll -a---- 9/15/2023 1:38 PM 739264 Microsoft.Azure.AppService.Middleware.Modules.dll -a---- 9/15/2023 1:38 PM 32704 Microsoft.Azure.AppService.Middleware.NetCore.dll -a---- 9/15/2023 1:38 PM 44592 Microsoft.Azure.AppService.Proxy.Client.dll -a---- 9/15/2023 1:38 PM 718376 Microsoft.Azure.AppService.Proxy.Common.dll -a---- 9/15/2023 1:38 PM 221120 Microsoft.Azure.AppService.Proxy.Runtime.dll -a---- 9/15/2023 1:38 PM 622968 Microsoft.Azure.Cosmos.Table.dll -a---- 9/15/2023 1:38 PM 1916344 Microsoft.Azure.DocumentDB.Core.dll -a---- 9/15/2023 1:38 PM 22208 Microsoft.Azure.KeyVault.Core.dll -a---- 9/15/2023 1:38 PM 367992 Microsoft.Azure.Storage.Common.dll -a---- 9/15/2023 1:38 PM 235400 Microsoft.Azure.Storage.File.dll -a---- 9/15/2023 1:38 PM 29632 Microsoft.Azure.WebJobs.dll -a---- 9/15/2023 1:38 PM 96680 Microsoft.Azure.WebJobs.Extensions.dll -a---- 9/15/2023 1:38 PM 71072 Microsoft.Azure.WebJobs.Extensions.Http.dll -a---- 9/15/2023 1:38 PM 25464 Microsoft.Azure.WebJobs.Extensions.Timers.Storage.dll -a---- 9/15/2023 1:38 PM 704432 Microsoft.Azure.WebJobs.Host.dll -a---- 9/15/2023 1:38 PM 65448 Microsoft.Azure.WebJobs.Host.Storage.dll -a---- 9/15/2023 1:38 PM 80320 Microsoft.Azure.WebJobs.Logging.ApplicationInsights.dll -a---- 9/15/2023 1:38 PM 28592 Microsoft.Azure.WebJobs.Script.Abstractions.dll -a---- 9/15/2023 1:38 PM 1074608 Microsoft.Azure.WebJobs.Script.dll -a---- 9/15/2023 1:38 PM 337328 Microsoft.Azure.WebJobs.Script.Grpc.dll -a---- 9/15/2023 1:38 PM 1256480 Microsoft.Azure.WebJobs.Script.WebHost.dll -a---- 9/15/2023 1:38 PM 26544 Microsoft.Azure.WebSites.DataProtection.dll -a---- 9/15/2023 1:38 PM 14720 Microsoft.Bcl.AsyncInterfaces.dll -a---- 9/15/2023 1:38 PM 1801328 Microsoft.Build.dll -a---- 9/15/2023 1:38 PM 212584 Microsoft.Build.Framework.dll -a---- 9/15/2023 1:38 PM 5218168 Microsoft.CodeAnalysis.CSharp.dll -a---- 9/15/2023 1:38 PM 31096 Microsoft.CodeAnalysis.CSharp.Scripting.dll -a---- 9/15/2023 1:38 PM 2496376 Microsoft.CodeAnalysis.dll -a---- 9/15/2023 1:38 PM 47096 Microsoft.CodeAnalysis.Razor.dll -a---- 9/15/2023 1:38 PM 133496 Microsoft.CodeAnalysis.Scripting.dll -a---- 9/15/2023 1:38 PM 1042592 Microsoft.CSharp.dll -a---- 9/15/2023 1:38 PM 1839544 Microsoft.DiaSymReader.Native.amd64.dll -a---- 9/15/2023 1:38 PM 24024 Microsoft.DotNet.PlatformAbstractions.dll -a---- 9/15/2023 1:38 PM 46968 Microsoft.Extensions.Azure.dll -a---- 9/15/2023 1:38 PM 45704 Microsoft.Extensions.Caching.Abstractions.dll -a---- 9/15/2023 1:38 PM 77432 Microsoft.Extensions.Caching.Memory.dll -a---- 9/15/2023 1:38 PM 38520 Microsoft.Extensions.Configuration.Abstractions.dll -a---- 9/15/2023 1:38 PM 60064 Microsoft.Extensions.Configuration.Binder.dll -a---- 9/15/2023 1:38 PM 34464 Microsoft.Extensions.Configuration.CommandLine.dll -a---- 9/15/2023 1:38 PM 74912 Microsoft.Extensions.Configuration.dll -a---- 9/15/2023 1:38 PM 24696 Microsoft.Extensions.Configuration.EnvironmentVariables.dll -a---- 9/15/2023 1:38 PM 40096 Microsoft.Extensions.Configuration.FileExtensions.dll -a---- 9/15/2023 1:38 PM 34424 Microsoft.Extensions.Configuration.Ini.dll -a---- 9/15/2023 1:38 PM 39072 Microsoft.Extensions.Configuration.Json.dll -a---- 9/15/2023 1:38 PM 31360 Microsoft.Extensions.Configuration.KeyPerFile.dll -a---- 9/15/2023 1:38 PM 34976 Microsoft.Extensions.Configuration.UserSecrets.dll -a---- 9/15/2023 1:38 PM 53936 Microsoft.Extensions.Configuration.Xml.dll -a---- 9/15/2023 1:38 PM 83584 Microsoft.Extensions.DependencyInjection.Abstractions.dll -a---- 9/15/2023 1:38 PM 192176 Microsoft.Extensions.DependencyInjection.dll -a---- 9/15/2023 1:38 PM 62944 Microsoft.Extensions.DependencyModel.dll -a---- 9/15/2023 1:38 PM 31880 Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -a---- 9/15/2023 1:38 PM 98480 Microsoft.Extensions.Diagnostics.HealthChecks.dll -a---- 9/15/2023 1:38 PM 31904 Microsoft.Extensions.Features.dll -a---- 9/15/2023 1:38 PM 28280 Microsoft.Extensions.FileProviders.Abstractions.dll -a---- 9/15/2023 1:38 PM 23712 Microsoft.Extensions.FileProviders.Composite.dll -a---- 9/15/2023 1:38 PM 63112 Microsoft.Extensions.FileProviders.Embedded.dll -a---- 9/15/2023 1:38 PM 82560 Microsoft.Extensions.FileProviders.Physical.dll -a---- 9/15/2023 1:38 PM 93304 Microsoft.Extensions.FileSystemGlobbing.dll -a---- 9/15/2023 1:38 PM 44192 Microsoft.Extensions.Hosting.Abstractions.dll -a---- 9/15/2023 1:38 PM 109744 Microsoft.Extensions.Hosting.dll -a---- 9/15/2023 1:38 PM 142512 Microsoft.Extensions.Http.dll -a---- 9/15/2023 1:38 PM 422024 Microsoft.Extensions.Identity.Core.dll -a---- 9/15/2023 1:38 PM 75424 Microsoft.Extensions.Identity.Stores.dll -a---- 9/15/2023 1:38 PM 23672 Microsoft.Extensions.Localization.Abstractions.dll -a---- 9/15/2023 1:38 PM 51848 Microsoft.Extensions.Localization.dll -a---- 9/15/2023 1:38 PM 136824 Microsoft.Extensions.Logging.Abstractions.dll -a---- 9/15/2023 1:38 PM 26032 Microsoft.Extensions.Logging.ApplicationInsights.dll -a---- 9/15/2023 1:38 PM 39544 Microsoft.Extensions.Logging.Configuration.dll -a---- 9/15/2023 1:38 PM 98424 Microsoft.Extensions.Logging.Console.dll -a---- 9/15/2023 1:38 PM 22176 Microsoft.Extensions.Logging.Debug.dll -a---- 9/15/2023 1:38 PM 87712 Microsoft.Extensions.Logging.dll -a---- 9/15/2023 1:38 PM 37000 Microsoft.Extensions.Logging.EventLog.dll -a---- 9/15/2023 1:38 PM 54392 Microsoft.Extensions.Logging.EventSource.dll -a---- 9/15/2023 1:38 PM 28296 Microsoft.Extensions.Logging.TraceSource.dll -a---- 9/15/2023 1:38 PM 32416 Microsoft.Extensions.ObjectPool.dll -a---- 9/15/2023 1:38 PM 32904 Microsoft.Extensions.Options.ConfigurationExtensions.dll -a---- 9/15/2023 1:38 PM 25776 Microsoft.Extensions.Options.DataAnnotations.dll -a---- 9/15/2023 1:38 PM 116872 Microsoft.Extensions.Options.dll -a---- 9/15/2023 1:38 PM 75896 Microsoft.Extensions.Primitives.dll -a---- 9/15/2023 1:38 PM 30840 Microsoft.Extensions.WebEncoders.dll -a---- 9/15/2023 1:38 PM 1363896 Microsoft.Identity.Client.dll -a---- 9/15/2023 1:38 PM 62472 Microsoft.Identity.Client.Extensions.Msal.dll -a---- 9/15/2023 1:38 PM 18864 Microsoft.IdentityModel.Abstractions.dll -a---- 9/15/2023 1:38 PM 112504 Microsoft.IdentityModel.JsonWebTokens.dll -a---- 9/15/2023 1:38 PM 35192 Microsoft.IdentityModel.Logging.dll -a---- 9/15/2023 1:38 PM 32632 Microsoft.IdentityModel.Protocols.dll -a---- 9/15/2023 1:38 PM 108920 Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -a---- 9/15/2023 1:38 PM 990640 Microsoft.IdentityModel.Tokens.dll -a---- 9/15/2023 1:38 PM 130672 Microsoft.JSInterop.dll -a---- 9/15/2023 1:38 PM 217208 Microsoft.Net.Http.Headers.dll -a---- 9/15/2023 1:38 PM 28560 Microsoft.NET.StringTools.dll -a---- 9/15/2023 1:38 PM 1510136 Microsoft.OData.Core.dll -a---- 9/15/2023 1:38 PM 882424 Microsoft.OData.Edm.dll -a---- 9/15/2023 1:38 PM 24464 Microsoft.Security.Utilities.dll -a---- 9/15/2023 1:38 PM 147704 Microsoft.Spatial.dll -a---- 9/15/2023 1:38 PM 1245344 Microsoft.VisualBasic.Core.dll -a---- 9/15/2023 1:38 PM 18080 Microsoft.VisualBasic.dll -a---- 9/15/2023 1:38 PM 26272 Microsoft.Win32.Primitives.dll -a---- 9/15/2023 1:38 PM 87712 Microsoft.Win32.Registry.dll -a---- 9/15/2023 1:38 PM 50248 Microsoft.Win32.SystemEvents.dll -a---- 9/15/2023 1:38 PM 777696 Microsoft.WindowsAzure.Storage.dll -a---- 9/15/2023 1:38 PM 189504 Mono.Posix.NETStandard.dll -a---- 9/15/2023 1:38 PM 87600 MonoPosixHelper.dll -a---- 9/15/2023 1:38 PM 1320352 mscordaccore.dll -a---- 9/15/2023 1:38 PM 1320352 mscordaccore_amd64_amd64_6.0.2123.36311.dll -a---- 9/15/2023 1:38 PM 1268128 mscordbi.dll -a---- 9/15/2023 1:38 PM 58528 mscorlib.dll -a---- 9/15/2023 1:38 PM 147120 mscorrc.dll -a---- 9/15/2023 1:38 PM 517032 msquic.dll -a---- 9/15/2023 1:38 PM 33224 NCrontab.Signed.dll -a---- 9/15/2023 1:38 PM 101552 netstandard.dll -a---- 9/15/2023 1:38 PM 97720 Newtonsoft.Json.Bson.dll -a---- 9/15/2023 1:38 PM 711952 Newtonsoft.Json.dll -a---- 9/15/2023 1:38 PM 103832 NuGet.Common.dll -a---- 9/15/2023 1:38 PM 143256 NuGet.Configuration.dll -a---- 9/15/2023 1:38 PM 77208 NuGet.DependencyResolver.Core.dll -a---- 9/15/2023 1:38 PM 110488 NuGet.Frameworks.dll -a---- 9/15/2023 1:38 PM 48024 NuGet.LibraryModel.dll -a---- 9/15/2023 1:38 PM 652168 NuGet.Packaging.dll -a---- 9/15/2023 1:38 PM 202640 NuGet.ProjectModel.dll -a---- 9/15/2023 1:38 PM 738696 NuGet.Protocol.dll -a---- 9/15/2023 1:38 PM 50072 NuGet.Versioning.dll -a---- 9/15/2023 1:38 PM 272328 protobuf-net.dll -a---- 9/15/2023 1:38 PM 15536 System.AppContext.dll -a---- 9/15/2023 1:38 PM 15520 System.Buffers.dll -a---- 9/15/2023 1:38 PM 246944 System.Collections.Concurrent.dll -a---- 9/15/2023 1:38 PM 264880 System.Collections.dll -a---- 9/15/2023 1:38 PM 666272 System.Collections.Immutable.dll -a---- 9/15/2023 1:38 PM 101024 System.Collections.NonGeneric.dll -a---- 9/15/2023 1:38 PM 95392 System.Collections.Specialized.dll -a---- 9/15/2023 1:38 PM 187040 System.ComponentModel.Annotations.dll -a---- 9/15/2023 1:38 PM 17528 System.ComponentModel.DataAnnotations.dll -a---- 9/15/2023 1:38 PM 18592 System.ComponentModel.dll -a---- 9/15/2023 1:38 PM 38576 System.ComponentModel.EventBasedAsync.dll -a---- 9/15/2023 1:38 PM 75440 System.ComponentModel.Primitives.dll -a---- 9/15/2023 1:38 PM 744608 System.ComponentModel.TypeConverter.dll -a---- 9/15/2023 1:38 PM 375912 System.Configuration.ConfigurationManager.dll -a---- 9/15/2023 1:38 PM 19592 System.Configuration.dll -a---- 9/15/2023 1:38 PM 156832 System.Console.dll -a---- 9/15/2023 1:38 PM 24184 System.Core.dll -a---- 9/15/2023 1:38 PM 2983600 System.Data.Common.dll -a---- 9/15/2023 1:38 PM 16048 System.Data.DataSetExtensions.dll -a---- 9/15/2023 1:38 PM 25720 System.Data.dll -a---- 9/15/2023 1:38 PM 16032 System.Diagnostics.Contracts.dll -a---- 9/15/2023 1:38 PM 15992 System.Diagnostics.Debug.dll -a---- 9/15/2023 1:38 PM 380576 System.Diagnostics.DiagnosticSource.dll -a---- 9/15/2023 1:38 PM 306824 System.Diagnostics.EventLog.dll -a---- 9/15/2023 1:38 PM 801400 System.Diagnostics.EventLog.Messages.dll -a---- 9/15/2023 1:38 PM 35504 System.Diagnostics.FileVersionInfo.dll -a---- 9/15/2023 1:38 PM 124488 System.Diagnostics.PerformanceCounter.dll -a---- 9/15/2023 1:38 PM 290464 System.Diagnostics.Process.dll -a---- 9/15/2023 1:38 PM 36512 System.Diagnostics.StackTrace.dll -a---- 9/15/2023 1:38 PM 60592 System.Diagnostics.TextWriterTraceListener.dll -a---- 9/15/2023 1:38 PM 15992 System.Diagnostics.Tools.dll -a---- 9/15/2023 1:38 PM 133280 System.Diagnostics.TraceSource.dll -a---- 9/15/2023 1:38 PM 16504 System.Diagnostics.Tracing.dll -a---- 9/15/2023 1:38 PM 50808 System.dll -a---- 9/15/2023 1:38 PM 414072 System.Drawing.Common.dll -a---- 9/15/2023 1:38 PM 21104 System.Drawing.dll -a---- 9/15/2023 1:38 PM 130224 System.Drawing.Primitives.dll -a---- 9/15/2023 1:38 PM 16504 System.Dynamic.Runtime.dll -a---- 9/15/2023 1:38 PM 197280 System.Formats.Asn1.dll -a---- 9/15/2023 1:38 PM 16048 System.Globalization.Calendars.dll -a---- 9/15/2023 1:38 PM 16032 System.Globalization.dll -a---- 9/15/2023 1:38 PM 15496 System.Globalization.Extensions.dll -a---- 9/15/2023 1:38 PM 77688 System.IdentityModel.Tokens.Jwt.dll -a---- 9/15/2023 1:38 PM 44080 System.IO.Abstractions.dll -a---- 9/15/2023 1:38 PM 72880 System.IO.Compression.Brotli.dll -a---- 9/15/2023 1:38 PM 266912 System.IO.Compression.dll -a---- 9/15/2023 1:38 PM 16032 System.IO.Compression.FileSystem.dll -a---- 9/15/2023 1:38 PM 822432 System.IO.Compression.Native.dll -a---- 9/15/2023 1:38 PM 39584 System.IO.Compression.ZipFile.dll -a---- 9/15/2023 1:38 PM 15992 System.IO.dll -a---- 9/15/2023 1:38 PM 93872 System.IO.FileSystem.AccessControl.dll -a---- 9/15/2023 1:38 PM 24184 System.IO.FileSystem.dll -a---- 9/15/2023 1:38 PM 42656 System.IO.FileSystem.DriveInfo.dll -a---- 9/15/2023 1:38 PM 15520 System.IO.FileSystem.Primitives.dll -a---- 9/15/2023 1:38 PM 72352 System.IO.FileSystem.Watcher.dll -a---- 9/15/2023 1:38 PM 31360 System.IO.Hashing.dll -a---- 9/15/2023 1:38 PM 83616 System.IO.IsolatedStorage.dll -a---- 9/15/2023 1:38 PM 69280 System.IO.MemoryMappedFiles.dll -a---- 9/15/2023 1:38 PM 191624 System.IO.Pipelines.dll -a---- 9/15/2023 1:38 PM 16512 System.IO.Pipes.AccessControl.dll -a---- 9/15/2023 1:38 PM 136352 System.IO.Pipes.dll -a---- 9/15/2023 1:38 PM 15488 System.IO.UnmanagedMemoryStream.dll -a---- 9/15/2023 1:38 PM 538272 System.Linq.dll -a---- 9/15/2023 1:38 PM 3857072 System.Linq.Expressions.dll -a---- 9/15/2023 1:38 PM 848544 System.Linq.Parallel.dll -a---- 9/15/2023 1:38 PM 228512 System.Linq.Queryable.dll -a---- 9/15/2023 1:38 PM 21368 System.Memory.Data.dll -a---- 9/15/2023 1:38 PM 173728 System.Memory.dll -a---- 9/15/2023 1:38 PM 18040 System.Net.dll -a---- 9/15/2023 1:38 PM 1807024 System.Net.Http.dll -a---- 9/15/2023 1:38 PM 179696 System.Net.Http.Formatting.dll -a---- 9/15/2023 1:38 PM 82080 System.Net.Http.Json.dll -a---- 9/15/2023 1:38 PM 639136 System.Net.HttpListener.dll -a---- 9/15/2023 1:38 PM 552112 System.Net.Mail.dll -a---- 9/15/2023 1:38 PM 101040 System.Net.NameResolution.dll -a---- 9/15/2023 1:38 PM 150688 System.Net.NetworkInformation.dll -a---- 9/15/2023 1:38 PM 79008 System.Net.Ping.dll -a---- 9/15/2023 1:38 PM 214192 System.Net.Primitives.dll -a---- 9/15/2023 1:38 PM 295088 System.Net.Quic.dll -a---- 9/15/2023 1:38 PM 349344 System.Net.Requests.dll -a---- 9/15/2023 1:38 PM 682144 System.Net.Security.dll -a---- 9/15/2023 1:38 PM 37024 System.Net.ServicePoint.dll -a---- 9/15/2023 1:38 PM 506528 System.Net.Sockets.dll -a---- 9/15/2023 1:38 PM 166560 System.Net.WebClient.dll -a---- 9/15/2023 1:38 PM 60576 System.Net.WebHeaderCollection.dll -a---- 9/15/2023 1:38 PM 31904 System.Net.WebProxy.dll -a---- 9/15/2023 1:38 PM 76448 System.Net.WebSockets.Client.dll -a---- 9/15/2023 1:38 PM 181936 System.Net.WebSockets.dll -a---- 9/15/2023 1:38 PM 15984 System.Numerics.dll -a---- 9/15/2023 1:38 PM 15992 System.Numerics.Vectors.dll -a---- 9/15/2023 1:38 PM 91296 System.ObjectModel.dll -a---- 9/15/2023 1:38 PM 10635936 System.Private.CoreLib.dll -a---- 9/15/2023 1:38 PM 2077344 System.Private.DataContractSerialization.dll -a---- 9/15/2023 1:38 PM 252576 System.Private.Uri.dll -a---- 9/15/2023 1:38 PM 8505504 System.Private.Xml.dll -a---- 9/15/2023 1:38 PM 405152 System.Private.Xml.Linq.dll -a---- 9/15/2023 1:38 PM 19408 System.Reactive.Core.dll -a---- 9/15/2023 1:38 PM 1455056 System.Reactive.dll -a---- 9/15/2023 1:38 PM 18896 System.Reactive.Linq.dll -a---- 9/15/2023 1:38 PM 66208 System.Reflection.DispatchProxy.dll -a---- 9/15/2023 1:38 PM 16544 System.Reflection.dll -a---- 9/15/2023 1:38 PM 16032 System.Reflection.Emit.dll -a---- 9/15/2023 1:38 PM 16032 System.Reflection.Emit.ILGeneration.dll -a---- 9/15/2023 1:38 PM 15992 System.Reflection.Emit.Lightweight.dll -a---- 9/15/2023 1:38 PM 15480 System.Reflection.Extensions.dll -a---- 9/15/2023 1:38 PM 1130656 System.Reflection.Metadata.dll -a---- 9/15/2023 1:38 PM 16032 System.Reflection.Primitives.dll -a---- 9/15/2023 1:38 PM 33440 System.Reflection.TypeExtensions.dll -a---- 9/15/2023 1:38 PM 15480 System.Resources.Reader.dll -a---- 9/15/2023 1:38 PM 16032 System.Resources.ResourceManager.dll -a---- 9/15/2023 1:38 PM 45216 System.Resources.Writer.dll -a---- 9/15/2023 1:38 PM 22688 System.Runtime.CompilerServices.Unsafe.dll -a---- 9/15/2023 1:38 PM 20128 System.Runtime.CompilerServices.VisualC.dll -a---- 9/15/2023 1:38 PM 42632 System.Runtime.dll -a---- 9/15/2023 1:38 PM 18040 System.Runtime.Extensions.dll -a---- 9/15/2023 1:38 PM 15480 System.Runtime.Handles.dll -a---- 9/15/2023 1:38 PM 51872 System.Runtime.InteropServices.dll -a---- 9/15/2023 1:38 PM 31904 System.Runtime.InteropServices.RuntimeInformation.dll -a---- 9/15/2023 1:38 PM 16544 System.Runtime.Intrinsics.dll -a---- 9/15/2023 1:38 PM 16008 System.Runtime.Loader.dll -a---- 9/15/2023 1:38 PM 221856 System.Runtime.Numerics.dll -a---- 9/15/2023 1:38 PM 17528 System.Runtime.Serialization.dll -a---- 9/15/2023 1:38 PM 322224 System.Runtime.Serialization.Formatters.dll -a---- 9/15/2023 1:38 PM 15992 System.Runtime.Serialization.Json.dll -a---- 9/15/2023 1:38 PM 28832 System.Runtime.Serialization.Primitives.dll -a---- 9/15/2023 1:38 PM 16496 System.Runtime.Serialization.Xml.dll -a---- 9/15/2023 1:38 PM 215216 System.Security.AccessControl.dll -a---- 9/15/2023 1:38 PM 94384 System.Security.Claims.dll -a---- 9/15/2023 1:38 PM 806560 System.Security.Cryptography.Algorithms.dll -a---- 9/15/2023 1:38 PM 486560 System.Security.Cryptography.Cng.dll -a---- 9/15/2023 1:38 PM 189616 System.Security.Cryptography.Csp.dll -a---- 9/15/2023 1:38 PM 93856 System.Security.Cryptography.Encoding.dll -a---- 9/15/2023 1:38 PM 31904 System.Security.Cryptography.OpenSsl.dll -a---- 9/15/2023 1:38 PM 822392 System.Security.Cryptography.Pkcs.dll -a---- 9/15/2023 1:38 PM 134816 System.Security.Cryptography.Primitives.dll -a---- 9/15/2023 1:38 PM 25464 System.Security.Cryptography.ProtectedData.dll -a---- 9/15/2023 1:38 PM 567424 System.Security.Cryptography.X509Certificates.dll -a---- 9/15/2023 1:38 PM 445560 System.Security.Cryptography.Xml.dll -a---- 9/15/2023 1:38 PM 18552 System.Security.dll -a---- 9/15/2023 1:38 PM 92536 System.Security.Permissions.dll -a---- 9/15/2023 1:38 PM 15520 System.Security.Principal.dll -a---- 9/15/2023 1:38 PM 151728 System.Security.Principal.Windows.dll -a---- 9/15/2023 1:38 PM 15536 System.Security.SecureString.dll -a---- 9/15/2023 1:38 PM 17568 System.ServiceModel.Web.dll -a---- 9/15/2023 1:38 PM 16504 System.ServiceProcess.dll -a---- 9/15/2023 1:38 PM 871072 System.Text.Encoding.CodePages.dll -a---- 9/15/2023 1:38 PM 16048 System.Text.Encoding.dll -a---- 9/15/2023 1:38 PM 16032 System.Text.Encoding.Extensions.dll -a---- 9/15/2023 1:38 PM 131232 System.Text.Encodings.Web.dll -a---- 9/15/2023 1:38 PM 1483936 System.Text.Json.dll -a---- 9/15/2023 1:38 PM 530080 System.Text.RegularExpressions.dll -a---- 9/15/2023 1:38 PM 125104 System.Threading.Channels.dll -a---- 9/15/2023 1:38 PM 80032 System.Threading.dll -a---- 9/15/2023 1:38 PM 16048 System.Threading.Overlapped.dll -a---- 9/15/2023 1:38 PM 505504 System.Threading.Tasks.Dataflow.dll -a---- 9/15/2023 1:38 PM 17056 System.Threading.Tasks.dll -a---- 9/15/2023 1:38 PM 16032 System.Threading.Tasks.Extensions.dll -a---- 9/15/2023 1:38 PM 138912 System.Threading.Tasks.Parallel.dll -a---- 9/15/2023 1:38 PM 16032 System.Threading.Thread.dll -a---- 9/15/2023 1:38 PM 16048 System.Threading.ThreadPool.dll -a---- 9/15/2023 1:38 PM 15480 System.Threading.Timer.dll -a---- 9/15/2023 1:38 PM 17008 System.Transactions.dll -a---- 9/15/2023 1:38 PM 351392 System.Transactions.Local.dll -a---- 9/15/2023 1:38 PM 15480 System.ValueTuple.dll -a---- 9/15/2023 1:38 PM 15992 System.Web.dll -a---- 9/15/2023 1:38 PM 52872 System.Web.HttpUtility.dll -a---- 9/15/2023 1:38 PM 16544 System.Windows.dll -a---- 9/15/2023 1:38 PM 56184 System.Windows.Extensions.dll -a---- 9/15/2023 1:38 PM 24736 System.Xml.dll -a---- 9/15/2023 1:38 PM 16504 System.Xml.Linq.dll -a---- 9/15/2023 1:38 PM 22192 System.Xml.ReaderWriter.dll -a---- 9/15/2023 1:38 PM 16504 System.Xml.Serialization.dll -a---- 9/15/2023 1:38 PM 15992 System.Xml.XDocument.dll -a---- 9/15/2023 1:38 PM 15992 System.Xml.XmlDocument.dll -a---- 9/15/2023 1:38 PM 18040 System.Xml.XmlSerializer.dll -a---- 9/15/2023 1:38 PM 16032 System.Xml.XPath.dll -a---- 9/15/2023 1:38 PM 18080 System.Xml.XPath.XDocument.dll -a---- 9/15/2023 1:38 PM 1122768 ucrtbase.dll -a---- 9/15/2023 1:38 PM 17056 WindowsBase.dll -a---- 9/15/2023 1:38 PM 197576 YamlDotNet.dll -a---- 9/15/2023 1:38 PM 336776 Yarp.ReverseProxy.dll

eseger13 commented 1 year ago

The webdriver package is in my .nuget/packages folder. Could that be the issue?

C:\Users\eseger.nuget\packages\selenium.webdriver

nvborisenko commented 1 year ago

Let's forget about C:\Users\eseger.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0\ path.

Can you please output what is

typeof(OpenQA.Selenium.SeleniumManager).Assembly.Location
eseger13 commented 1 year ago

C:\Users\eseger\source\repos\HarvestGroup\external-user-create-ui-interaction\external-user-create-ui-interaction\bin\Debug\net6.0\bin\WebDriver.dll

eseger13 commented 1 year ago

Folder contents:

Mode LastWriteTime Length Name


d----- 9/19/2023 4:27 PM runtimes -a---- 6/24/2023 7:52 AM 886784 AngleSharp.dll -a---- 6/14/2023 3:31 PM 326656 azure-function-library.dll -a---- 9/7/2023 12:50 PM 377776 Azure.Core.dll -a---- 4/6/2022 3:21 PM 29584 Azure.Extensions.AspNetCore.Configuration.Secrets.dll -a---- 9/13/2023 10:18 AM 325664 Azure.Identity.dll -a---- 6/15/2021 6:53 PM 109456 Azure.Security.KeyVault.Secrets.dll -a---- 9/12/2023 2:59 PM 1302056 Azure.Storage.Blobs.dll -a---- 9/12/2023 2:58 PM 240168 Azure.Storage.Common.dll -a---- 4/11/2023 12:45 PM 462272 Azure.Storage.Queues.dll -a---- 5/23/2018 3:13 AM 11264 AzureFunctions.Extensions.DependencyInjection.dll -a---- 8/9/2023 6:16 PM 115232 Cosmos.CRTCompat.dll -a---- 9/20/2023 2:33 PM 692 extensions.json -a---- 9/20/2023 2:33 PM 24064 external-user-create-ui-interaction.dll -a---- 9/20/2023 2:33 PM 21252 external-user-create-ui-interaction.pdb -a---- 9/20/2023 1:23 PM 151958 function.deps.json -a---- 1/29/2023 8:59 AM 258048 ICSharpCode.SharpZipLib.dll -a---- 7/19/2022 2:54 PM 133552 Microsoft.AI.DependencyCollector.dll -a---- 7/19/2022 2:54 PM 43424 Microsoft.AI.EventCounterCollector.dll -a---- 7/19/2022 2:55 PM 215472 Microsoft.AI.PerfCounterCollector.dll -a---- 7/19/2022 2:54 PM 120240 Microsoft.AI.ServerTelemetryChannel.dll -a---- 7/19/2022 2:54 PM 71072 Microsoft.AI.WindowsServer.dll -a---- 7/19/2022 2:55 PM 46000 Microsoft.ApplicationInsights.WorkerService.dll -a---- 9/15/2023 4:58 PM 2671536 Microsoft.Azure.Cosmos.Client.dll -a---- 3/30/2021 1:16 PM 138656 Microsoft.Azure.Cosmos.Core.dll -a---- 8/9/2023 6:16 PM 1383984 Microsoft.Azure.Cosmos.Direct.dll -a---- 3/30/2021 1:16 PM 236960 Microsoft.Azure.Cosmos.Serialization.HybridRow.dll -a---- 8/9/2023 6:16 PM 8309792 Microsoft.Azure.Cosmos.ServiceInterop.dll -a---- 9/15/2020 4:49 PM 17280 Microsoft.Azure.Functions.Extensions.dll -a---- 8/29/2023 1:01 PM 236992 Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll -a---- 6/26/2023 11:31 AM 112064 Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll -a---- 10/4/2019 12:44 PM 83832 Microsoft.Azure.WebJobs.Host.Storage.dll -a---- 4/14/2020 5:39 PM 14720 Microsoft.Bcl.AsyncInterfaces.dll -a---- 11/15/2019 2:38 AM 14440 Microsoft.Bcl.HashCode.dll -a---- 3/11/2023 4:43 PM 53696 Microsoft.Extensions.Azure.dll -a---- 7/19/2022 2:55 PM 26032 Microsoft.Extensions.Logging.ApplicationInsights.dll -a---- 5/23/2023 3:01 PM 1027536 Microsoft.Identity.Client.dll -a---- 5/24/2023 5:22 PM 66600 Microsoft.Identity.Client.Extensions.Msal.dll -a---- 7/26/2022 10:08 PM 18824 Microsoft.IdentityModel.Abstractions.dll -a---- 10/18/2022 11:20 AM 27768 Microsoft.Win32.SystemEvents.dll -a---- 8/7/2018 9:32 PM 777696 Microsoft.WindowsAzure.Storage.dll -a---- 8/9/2023 6:16 PM 569904 msvcp140.dll -a---- 3/3/2022 2:25 AM 101376 OneOf.dll -a---- 10/22/2021 6:51 PM 395376 System.Configuration.ConfigurationManager.dll -a---- 11/15/2019 2:37 AM 49224 System.Diagnostics.PerformanceCounter.dll -a---- 10/18/2022 11:21 AM 174712 System.Drawing.Common.dll -a---- 10/22/2021 6:47 PM 29296 System.IO.Hashing.dll -a---- 10/22/2021 6:49 PM 104048 System.Security.Permissions.dll -a---- 10/22/2021 6:49 PM 25712 System.Windows.Extensions.dll -a---- 9/11/2023 10:15 AM 44544 Throw.dll -a---- 8/9/2023 6:16 PM 99376 vcruntime140.dll -a---- 8/9/2023 6:16 PM 39472 vcruntime140_1.dll -a---- 9/5/2023 4:12 AM 4557824 WebDriver.dll -a---- 9/5/2023 4:26 AM 37376 WebDriver.Support.dll -a---- 8/9/2023 11:44 AM 34816 WebDriverManager.dll

nvborisenko commented 1 year ago

Then I make summary up that AppContext doesn't work properly in your case, actually in case of Rider.

I think Selenium itself can resolve this situation: visit AppContext... if there is no manager binary - visit Assembly.Location. Thank you for revealing your case.

eseger13 commented 1 year ago

@nvborisenko please forgive me, but I don't understand how to proceed from here. What should I do to resolve?

nvborisenko commented 1 year ago

Ah stop, I don't see selenium-manager.exe in C:\Users\eseger\source\repos\HarvestGroup\external-user-create-ui-interaction\external-user-create-ui-interaction\bin\Debug\net6.0. Can you find selenium-manager.exe where it located?

eseger13 commented 1 year ago

It's located at:

C:\Users\eseger\source\repos\HarvestGroup\external-user-create-ui-interaction\external-user-create-ui-interaction\bin\Debug\net6.0\selenium-manager\windows

nvborisenko commented 1 year ago

I propose to join Slack where we can spamming and keep this thead clean.

https://join.slack.com/t/seleniumhq/shared_invite/zt-22b85hmhv-krEcWUFQCOWh8XfQTWOATQ

Just ping there, I will answer. If you really want the issue to be resolved.

eseger13 commented 1 year ago

@nvborisenko I found the selenium-manager.exe file in the bin folder. It was loaded there through the nuget package download, but the AppContext in Rider looks to be C:\Users\eseger.AzureToolsForIntelliJ\AzureFunctionsCoreTools\v4\4.51.0\ where selenium-manager is NOT. I copied the selenium-manager folder from the bin folder to the AppContext folder and now it's invoking the driver as expected! Thanks for all your help!

nvborisenko commented 1 year ago

Actually it was not clear what is happened, but it is as is.

From my point of view you copy files, and miss selenium-manager binaries.

github-actions[bot] commented 11 months ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.