- nobelActive particpant
- Posts : 18
Join date : 2011-03-25
Age : 36
Is it possible running selenium testcase(junit) in selenium 2
Thu Apr 14, 2011 12:10 pm
Hi,
I am using smartGWT. I have generated the following junit selenium Testcase using Selenium IDE. Can i run the following testcase using Selenium 2? If so, Can anybody help me how to do run it?
Thanks in advance,
Nobel.
I am using smartGWT. I have generated the following junit selenium Testcase using Selenium IDE. Can i run the following testcase using Selenium 2? If so, Can anybody help me how to do run it?
- Code:
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
import java.util.regex.Pattern;
public class TestCase1 extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://127.0.0.1:8888/");
selenium.start();
}
@Test
public void testTestCase1() throws Exception {
selenium.open("/FormTypeSample.html?gwt.codesvr=127.0.0.1:9997");
selenium.click("scLocator=//IButton[ID="V_B_SMARTGWT_01"]/");
selenium.type("scLocator=//DynamicForm[ID="isc_DynamicForm_0"]/item[name=intField||title=Integer||value=we||index=0||Class=TextItem]/element", "we");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
Thanks in advance,
Nobel.
- [Help] Problem of running selenium Testcase[Java Junit] with Selenium RC
- In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing
- Running Selenium Test cases as JUnit tests using Command Line
- Selenium IDE generated testcase script is not working in Selenium Webdriver
- how to run a testcase with selenium webdriver
Permissions in this forum:
You cannot reply to topics in this forum