I have created dozens of my test cases using Selenium WebDriver using .Net (c#) and my question is:
Is there a way to run all my test cases run on schedule?
Currently I’m running my test cases manually in Visual Studio!
Any help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CruiseControl is open source, and can do what TeamCity can do (just without the awesome interface, it may take some figuring out)
http://cruisecontrol.sourceforge.net/
MSTest command line options documentation live here:
http://msdn.microsoft.com/en-us/library/ms182489(v=vs.80).aspx
You can wrap it into a batch file and launch it using Windows Scheduled Tasks.
If you want to load all tests, it is pretty simply, just:
mstest.exe /testcontainer:Assembly.dllReplacing
Assembly.dllwith the compiled test project assembly. The MSDN documentation should suffice. If not, feel free come back and ask