Hi ,
when i run the below code i got the err as "Test Class not found in
selected project" in eclipse. Am using eclipse+TestNG.I have the class
file as "DDT_Test".help wud be greatly appreciated.
package DDT_Pack;
import org.testng.annotations.AfterClass;
import org.testng.annotations.Test;
import com.gargoylesoftware.htmlunit.javascript.host.ActiveXObject;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.SeleneseTestCase;
@SuppressWarnings("unused")
public class DDT_Test extends SeleneseTestCase {
public void setUp() throws Exception {
selenium= new DefaultSelenium("localhost", 4444, "*firefox",
"http://
abc.com");
selenium.start();
}
//@Test
public void Test1() throws Exception {
selenium.selectWindow("null");
selenium.type("getquote_ptlt_2{actionForm.lastName}", "First");
}
@AfterClass
public void tearDown() throws Exception {
selenium.stop();
}
}
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en