首页 > 代码库 > junit4框架——webdriver脚本
junit4框架——webdriver脚本
后续会带来testNG单元测试框架比junit框架更强大;
package cn.helloselenium; import org.openqa.selenium.*; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.By; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; public class junitwebdriver { public WebDriver driver; String baseUrl="http://www.sogou.com/"; @BeforeClass public static void setUpBeforeClass() throws Exception { } @AfterClass public static void tearDownAfterClass() throws Exception { } @Before public void setUp() throws Exception { System.setProperty("webdriver.gecko.driver", "C:\\Program Files (x86)\\Mozilla Firefox\\geckodriver.exe"); driver=new FirefoxDriver(); } @After public void tearDown() throws Exception { //driver.quit(); } @Test public void test() { //fail("Not yet implemented"); driver.get(baseUrl+"/"); driver.findElement(By.id("query")).sendKeys("junit4单元测试"); driver.findElement(By.id("stb")).click(); } }
junit4框架——webdriver脚本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。