I am fairly new to Selenium but comfortable I think. I am using Selenium to test a website by recording .html test scripts and then running them in TestRunner....works great. The Selenium Core is on a different server so I access TestRunner by URL and run the tests.
I want to automate the process to run all the tests at the same time instead of manually running each testsuite.
I installed Eclipse and the TestNG plug-in. From here I dont really know exactly what to do to get my tests to run. I have tried many things and do not know if any of them are in the correct direction.
*In Eclipse, I made new project->java project, named it regression testing, selected next and finish
*I went to Window->show view->other, Expanded Java, selected TestNG and selected OK.
*Clicked the Run dropdown menu and selected Run Configurations
*Right clicked TestNG and selected New and named it accounts(name of the folder my testsuite is in)
*Checked Suite
*Clicked Browse FS and selected the folder(accounts) my tests are in
*On the Classpath tab, I highlighted the Regression Testing user Entry and selected Add JARs.. and added testng-5.9-jdk15.jar
*In Selenium IDE, I made a new format (testng.format.js) from this site https://source.sakaiproject.org/contrib/rsmart/test_suite/ and changed the test I want to run to this format and saved it in the same accounts folder.
I tried to run now and and get WARNING: No test suite found. Nothing to run.
So I am sure many of these steps probably incorrect and I haven't done everything necessary to run these tests but I can't figure it out from here.
Please provide help....I need it badly.