码迷,mamicode.com
首页 > Web开发 > 详细

WebDriver 运行模式下使用rc 代码

时间:2014-11-10 21:13:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   使用   java   sp   for   div   

selenium2 对之前的rc 代码提供了兼容性接口,如果你之前的code 都是用rc 写,而现在又想摆脱要每次启动server,你只需要 略做修改即可。代码如下: 

public class TestWb extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
WebDriver driver = new FirefoxDriver();
String baseUrl = "http://www.baidu.com/";
selenium = new WebDriverBackedSelenium(driver, baseUrl);
}
@Test
public void testWb() throws Exception {
selenium.open(baseUrl);
selenium.type("id=kw", "hello");
selenium.click("id=su");
selenium.waitForPageToLoad("30000");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}

 

更多资料关注:www.kootest.com ;技术交流群:182526995

WebDriver 运行模式下使用rc 代码

标签:blog   http   io   ar   使用   java   sp   for   div   

原文地址:http://www.cnblogs.com/kootest/p/4088105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!