我是新來測試的,我正試圖學習如何在eclipse中的selenium ide中運行記錄的測試用例。不能在Eclipse中執行從selenium IDE導出爲java/junit4/remote控制的測試用例ide
- 我記錄了一個測試用例來搜索Google中的單詞selenium。
- 我出口它的Java/junit4 /遙控
- 然後我在eclipse strated一個新的項目,並添加「的Java 4.12」和「硒站在 獨立服務器」外部JAR文件。
- 我將exporetd代碼添加到項目中。
- 然後我開始命令提示符並執行硒獨立服務器。
- 然後我點擊eclipse IDE中的junit運行。
Firefox啓動,但發生錯誤。
下面是我執行的代碼:
package please;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
import java.util.regex.Pattern;
public class please {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "https://www.google.lk/");
selenium.start();
}
@Test
public void testPlease() throws Exception {
selenium.open("/?gfe_rd=cr&ei=10SKWaOqJ46AuATcuKPAAg");
selenium.type("id=lst-ib", "selenium");
selenium.type("id=lst-ib", "selenium");
assertEquals("selenium - Google Search", selenium.getTitle());
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}