SeleniumFixture
SeleniumFixture copied to clipboard
Selenium testing fixture for C#
I have a long running test which times out after 60 seconds with this error: ``` The HTTP request to the remote WebDriver server for URL http://localhost:16051/session/65a753f16ca91b2035f4564f44781fb4/execute timed out after...
Because a single test can run for various browsers the amount of tests to be run is currently unknown or just wrong at the beginning of a test-run and keeps...
The `RemoteDriverAttribute` doesn't respect the `Shared` property. It will ignore it by always creating a new driver. In the code: ``` public override IEnumerable GetDrivers(MethodInfo testMethod) { yield return CreateWebDriver(testMethod,...
When having a `[SeleniumTheory]` the runner shows the arguments of the theory wrong. ``` [SeleniumTheory] [InlineData(1, 2)]//forward swipes [InlineData(2, 3)] [InlineData(3, 4)] [InlineData(4, 3)]//backward swipes [InlineData(3, 2)] [InlineData(2, 1)] public...
I like the idea of providing a collection of `RemoteWebDriverCapability` flags to tell you want to run the test on multiple browsers in a Selenium grid. This is however not...