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

[🚀 Feature]: [dotnet] Revisit unit tests infrastructure #15536

Open
nvborisenko opened this issue Mar 30, 2025 · 1 comment
Open

[🚀 Feature]: [dotnet] Revisit unit tests infrastructure #15536

nvborisenko opened this issue Mar 30, 2025 · 1 comment
Labels
C-dotnet .NET Bindings I-enhancement Something could be better

Comments

@nvborisenko
Copy link
Member

Feature and motivation

Current situation is:

Image

Usage example

Concerns:

  • It could be one test project because Chrome/Edge/Firefox drivers live in one project supported by Selenium (like built-in classes).
  • Default namespace in test project is OpenQA.Selenium when usually it should be OpenQA.Selenium.Tests. I don't understand why it is unusual.
  • Avoid any static context (EnvironmentManager class) - it will allow to look at parallelization. My computer has 6/12 cores, I want to utilize all of them when running Selenium unit tests.
@nvborisenko nvborisenko added I-enhancement Something could be better C-dotnet .NET Bindings labels Mar 30, 2025
@RenderMichael
Copy link
Contributor

I don't have much of the historical context surrounding the design decisions of the test projects. There are some clear reasons I see for a heavily configuration-based EnvironmentManager. For example, the EnvironmentManager.Instance property is accessible in the AssemblyFixture types.

At the same time, I see some room for optimization.

Notably, the above AssemblyFixture's one-time setup starts the web server and the remote server, but not the driver. The one-time teardown closes whatever driver may be opened, likely as a precaution. I fully believe we can move the "current driver" management to the test-side.

Rather than using appconfig.json (and all the Runfiles.Create() and runfiles.Rlocation ceremony surrounding that), we can give DriverTestFixture a method like so:

public abstract class DriverTestFixture
{
    public abstract IWebDriver CreateDriver();
}

I can experiment with some potential solutions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-dotnet .NET Bindings I-enhancement Something could be better
Projects
None yet
Development

No branches or pull requests

2 participants