Reputation: 630
I have a library that I want to put ChromeDriver and IEDriver in so I don't have to reference those executables from each of my different testing frameworks. I have run into an issue, though, where my testing framework is looking for the drivers in the frameworks solution directory, when they exist within the library that I'm referencing. How do I solve this? Am I even going about it the right way?
Upvotes: 2
Views: 165
Reputation: 16201
Pull down the intended package through NuGet. Then Right click on on the test project>add existing>navigate to the package directory(ie chrome) and add as shown as follows.
See the screencast
Upvotes: 1