Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Last active June 8, 2016 01:55
Embed
What would you like to do?
package webDriverSample;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class SeleniumWebDriver {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "driver/chromedriver");
WebDriver driver = new ChromeDriver();
driver.get("https://www.google.co.jp/");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment