sparkyShorts
sparkyShorts

Reputation: 630

WebDriver in library not found

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

Answers (1)

Saifur
Saifur

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

enter image description here enter image description here enter image description here

Upvotes: 1

Related Questions