elgatov

Results 19 comments of elgatov

Same bug appeared downloading the latest version from github executed in VS2019 community edition: ```csharp ========== Starting test run ========== An exception occurred while invoking executor 'executor://mstestadapter/v2': Unable to find...

According to [`Fuslogvw.exe (Assembly Binding Log Viewer)`](https://docs.microsoft.com/en-us/dotnet/framework/tools/fuslogvw-exe-assembly-binding-log-viewer), `testhost.net48.exe` is looking for the NuGet package dll in the wrong folder (relevant lines bolded): *** Assembly Binder Log Entry (26/08/2022 @ 9:43:32)...

Hi @Evangelink, I have had some success doing this: 1. Clean the project and delete `bin` and `obj` folders (may be unnecessary) 2. Update `MSTest.TestAdapter` to version `2.2.10` 3. Reinstall...

Hi @Evangelink, Currently I am not aware of using AppDomain on the project. I have postponed adding `log4net` to the project indefinitely until the bug is properly resolved, so it...

Hello again @Evangelink, adding `True` to the `.runsettings` file does indeed fix this problem. Thank you.

Use case is exactly the same as mine, and a lot of other people using Selenium, for that matter.

@NetanelMosheCohen try with: ```csharp public void AddAttachments(DriverManager driverManager) { Screenshot screenshot = ((ITakesScreenshot)driverManager.Driver).GetScreenshot(); string attachmentsPath = Directory.GetCurrentDirectory() + "\\" + currentTestContext.TestName + ".png"; screenshot.SaveAsFile(attachmentsPath); currentTestContext.AddResultFile(attachmentsPath); } ```

Hi @martsve and thanks for your input. I already tried using a static/singleton but it breaks when running in parallel. I will probably take the second option of creating a...

> There are also the `Trace.Write*()` tracing/logging methods. I can use them in the unit tests or in the code that is tested and they get captured into the correct...

> If that's not the case, could you please provide more information? I will give you an example use case for people using Selenium and MSTest for web testing (although...