Hi all
I am trying to execute my first specflow feature in Visual Studio (having previously set up a framework using Java, Cucumber and Selenium).
I have installed (using NuGet), Specflow, NUnit, Selenium.Support, Selenium.WebDriver, SpecFlow.MsTest and SpecFlow.NUnit
My app.config file contains the following:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow" />
</configSections>
<specFlow>
<unitTestProvider name="MsTest"/>
</specFlow>
</configuration>
On running the feature file, I get the following:
----- Discover test started ------
Failed to configure settings for runsettings plugin 'VSTest Run Configuration' as it threw following exception:
'An error occurred while parsing EntityName. Line 1, position 32.'
Please contact the plugin author.
========== Discover test finished: 0 found (0:00:00.0370009) ==========
First port of call is a good spell of googling, yet I have found no solutions.
Changing the unitTestProvider to NUnit has the same result.
I am using Visual Studio 2015 Enterprise
Can anyone help please?
Thanks
Mark