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?
-
Why can't you use Selenium? Seems like this would be reinventing the wheel? Or do you for some reason need a better wheel :-)TGH– TGH2012-03-29 04:23:03 +00:00Commented Mar 29, 2012 at 4:23
-
cause our company write some system cannot be used on the firefox... Actually,i feel coufused too. they ask me use selenium API.Sam– Sam2012-03-29 04:31:05 +00:00Commented Mar 29, 2012 at 4:31
-
Selenium supports most browsers though. You can even use it with IETGH– TGH2012-03-29 04:32:28 +00:00Commented Mar 29, 2012 at 4:32
-
i know.That's why I feel confused.Sam– Sam2012-03-29 04:35:50 +00:00Commented Mar 29, 2012 at 4:35
-
Best to get clarification from your team, why they hate selenium? I would suggest, use WatIR, in this case you do not need to reinvent the wheel. Just a thought.Shailesh– Shailesh2012-03-29 05:57:24 +00:00Commented Mar 29, 2012 at 5:57
Add a comment
|
1 Answer
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.