Reputation: 97
My company ask mt to write a program for testing without using selenium IDE and firefox. How can I use windowform to build a selenium-base program?? I always only import dll.file to Nunit and test.Now how can I just run in my own program?
Upvotes: 1
Views: 5595
Reputation: 39248
Here's how I run Selenium Tests
Download Selenium RC Launch selenium RC like this: java -jar [Your path to]\Selenium-server.jar -interactive --This will launch a Java console application that is your Selenium Server (RC)
Write and run the tests as described in @shenhengbin's article
There is no executable involved in this, and you can use any testing framework to run the tests.
Upvotes: 1