.....selenium-remote-control-1.0.3selenium-server-1.0.3
下面把我们录制的脚本导出并放置到入出。
将代码出为junit 4 类型的代码,我这里保存为test.java 并复制到我的项目中。
Src文件夹下的com.test包中:
代码内容如下:
package com.test;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.regex.Pattern;
public class test extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://www.baidu.com/");
//这里如果运行不了,修改浏览器为 *firefox 或 *iexplore
selenium.start();
}