ananya
ananya

Reputation: 11

how to create .exe file in visual studio 2017 for 1 project of selenium using c# having multiple class within it

I am working on a project where I am writing selenium script. I'm writing it in visual studio 2017.I am using c#, NUNIT framework with selenium. I am having several classes. Each class is testing functionality of each pageenter image description here.1 class i.e Login class is kept as parent class and other classes are inheriting that to login to the web page. I want to run the test outside visual studio from command prompt by creating a .exe file for each class. In 1 single project I kept all the class files.how to create .exe file in visual studio 2017 for 1 project of selenium using c# having multiple class within it.

Upvotes: 1

Views: 25346

Answers (1)

user1323a
user1323a

Reputation: 96

Select Release from the Solution Configuration drop-down list, which is on the Standard toolbar. On the Build menu, click Build.

Upvotes: 0

Related Questions