Abhijeet Dashpute
Abhijeet Dashpute

Reputation: 61

Can i use selenium web driver for automation using c# in vs 2010?

can i use selenium web driver for automation using c# in vs 2010

Upvotes: 1

Views: 869

Answers (1)

levis84
levis84

Reputation: 1054

Yes this is possible.

Best way is to install Selenium Webdriver via the Nuget console in Visual Studio. You may need to follow these instructions to get Nuget working in VS 2010:

https://github.com/paypal/sdk-core-dotnet/wiki/Using-Nuget-in-Visual-Studio-2010-&-2012

Once you have Nuget working you can install Selenium using the following link:

https://www.nuget.org/packages/Selenium.WebDriver

This will install all the package files for you.

It might be worth reading a bit about Nuget first, it's very easy to use.

Upvotes: 2

Related Questions