selenium phantomjs java无界面浏览器环境搭建

java selenium搭建无界面浏览器

1.http://phantomjs.org/

下载windows版phantomjs

2.解压后bin目录下会有exe文件

 

3.测试代码:

package se;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.phantomjs.PhantomJSDriver;
public class test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
    //    System.setProperty("webdriver.gecko.driver", "C:\\Program Files (x86)\\Mozilla Firefox\\geckodriver.exe");
        System.setProperty("phantomjs.binary.path", "C:\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe");
    //    WebDriver driver = new FirefoxDriver();
        WebDriver driver = new PhantomJSDriver();
        driver.get("http://www.baidu.com");
        System.out.println(driver.getCurrentUrl());
        

    }

}

4.url成功打印

作者新书已出,<Selenium3+Python3自动化测试项目实战>

posted @ 2017-06-24 23:16  大牛测试技术  阅读(7208)  评论(0编辑  收藏  举报