Applying a .runsettings file from the command line in .NET Core
A look at how to reference the .runsettings files from the command line in PowerShell and Bash
A look at how to reference the .runsettings files from the command line in PowerShell and Bash
Last time I showed how to launch a WebDriver instance from .NET core so that we can test on any platform. When creating a framework however I like to have a factory to handle the driver creation and setup for me. I don’t wan’t to have to mess around setting things up in my Test class every time. My .NET core WebDriverFactory design criteria: It should have really simple syntax, especially for creating a ‘default’ webdriver. It should handle local…