Selenium dll files for .NET.

I install Selenium to study automation testing, and I chose C # .Net as my language. I downloaded the .Net client driver from this page - http://seleniumhq.org/download/ that is, I downloaded:

enter image description here

Now, when I follow the steps, it says that I need to create a class library in Visual Studio, and then add a link to some NUnit and Selenium DLL files. Well, I installed NUnit, created a class library, and trying to reference the dll, I cannot find a few of them that need to be added. If someone has encountered a similar problem before or knows where I can find these files, please help.

Files to be added: -

http://seleniumhq.org/docs/appendix_installing_dotnet_driver_client.html#configuring-selenium-rc-net-reference

enter image description here

I have on my machine:

enter image description here

i.e. I have only ThoughtWorks.Selenium.Core.dll

I found NUnit.framework.dll and NUnit.nmock.dll in the NUnit folder.

Issue: I don't have or am not able to find the following dll's: nunit.core.dll nmock.dll ThoughtWorks.Selenium.IntegrationTests.dll ThoughtWorks.Selenium.UnitTests.dll. 

Please offer.

+4
source share
1 answer

It so happened that I was looking for the same thing, and here it is,

https://github.com/schneems/Selenium-RC-Beta-2

You will go here and upload the zip file for the whole package. Extract the zip file, and in the folder "selenium-dotnet-client-driver-1.0-beta-2" you have what you need.

+1
source

Source: https://habr.com/ru/post/1411611/


All Articles