首页 > 代码库 > WebDriver 运行模式下使用rc 代码
WebDriver 运行模式下使用rc 代码
selenium2 对之前的rc 代码提供了兼容性接口,如果你之前的code 都是用rc 写,而现在又想摆脱要每次启动server,你只需要 略做修改即可。代码如下:
public class TestWb extends SeleneseTestCase {@Beforepublic void setUp() throws Exception {WebDriver driver = new FirefoxDriver();String baseUrl = "http://www.baidu.com/";selenium = new WebDriverBackedSelenium(driver, baseUrl);}@Testpublic void testWb() throws Exception {selenium.open(baseUrl);selenium.type("id=kw", "hello");selenium.click("id=su");selenium.waitForPageToLoad("30000");}@Afterpublic void tearDown() throws Exception {selenium.stop();}
更多资料关注:www.kootest.com ;技术交流群:182526995
WebDriver 运行模式下使用rc 代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。