import junit.framework.Assert;
import org.junit.Test;
import org.openqa.selenium.*;
import org.openqa.selenium.chrome.ChromeDriver;
public class SeleniumTest {
protected WebDriver driver;
@Test
public void test() {
System.setProperty("webdriver.chrome.driver", "lib/chromedriver.exe");
WebDriver driver = new ChromeDriver();
// Yahoo!JAPANのWebサイトに移動
driver.get("http://www.yahoo.co.jp/");
// タイトルがYahoo!JAPANか確認
Assert.assertEquals("Yahoo! JAPAN", driver.getTitle());
// テキストボックスに"selenium"と入力
driver.findElement(By.id("srchtxt")).sendKeys("selenium");
// 検索ボタンをクリック
driver.findElement(By.id("srchbtn")).click();
driver.quit();
}
}