WebDriver 运行模式下使用rc 代码

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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。