public static void main(String[] args) { File file=new File("src/main/resources/drivers"); System.setProperty("phantomjs.binary.path",file+"/phantomjs.exe"); WebDriver driver=new PhantomJSDriver(); driver.get("http://www.baidu.com"); System.out.println(driver.getPageSource()); }