Browsed by
Category: C# Selenium

Launching Selenium WebDriver in .NET Core the easy way

Launching Selenium WebDriver in .NET Core the easy way

This entry is part 1 of 9 in the series Launching WebDrivers in .NET Core the easy way

In this post I am finally pleased to sum up the last of my experiences releasing Open Source libraries to help launching Selenium WebDriver instances in .NET Core projects. Whilst actually the last of the posts chronologically in this series I am placing it as post number 1, feel free to skip to the next one and read through before coming back if you want the story in the order that I wrote it. Writing the code of an Open…

Read More Read More

Preparing to inject test configuration – Refactoring to use a configuration object.

Preparing to inject test configuration – Refactoring to use a configuration object.

This entry is part 6 of 9 in the series Launching WebDrivers in .NET Core the easy way

After last time I can feel that I am getting close to being able to inject a configuration for my tests. Next I want to be able to use a configuration file to set the particular configuration that I want to use for any particular test run. So how do we go about doing that in .NET Core? The next steps are: Refactor calls with many arguments to take a standard WebDriver configuration object. Allow different ways to collect and…

Read More Read More