1、firefox3.6安装seleniumIDE插件
地址:http://seleniumhq.org/projects/ide/
安装完成之后,重启firefox,可以在工具中看到该插件:
点击Selenium IDE,效果如图:
2、默认浏览器设置
点击Options
修改为:
设置后,导出的用例,默认代码如下:
selenium =
new DefaultSelenium("localhost",4444,"*iexplore", "xxx");
设置后,导出的用例,默认代码如下:
3、录制脚本
l 打开selenium IDE,确保该按钮处于录制状态:
l 在地址栏敲击:http://jooben.blog.51cto.com/
l 进入博客按照如下提示操作
对“生活琐记”进行文本判断
l 停止录制,得到结果
l 导出java代码
代码如下:
package com.example.tests;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.regex.Pattern;
public class Untitled extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "http://jooben.blog.51cto.com/");
selenium.start();
}
@Test
public void testUntitled() throws Exception {
selenium.open("/");
verifyTrue(selenium.isTextPresent("生活琐记"));
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}