I have Used Junit to create Testcases and now i want to execute my testcases parallely using Selenium Grid with the help of Threads.
package com.eviltester.seleniumtutorial;
import com.thoughtworks.selenium.*;
import java.io.*;
public class Myseleniumtests extends SeleneseTestCase implements Runnable
{
----
some code
----
}
The error what i m getting is:
The return types are incompatible for the inherited methods Runnable.run(), TestCase.run()
can anyone pls suggest me how to run multiple testcases parallely using selenium Grid & JUnit.