java+selenium+linux(docker)实现无界面爬虫自动化扣作

docker配置查看下面链接资料

https://blog.csdn.net/songer_xing/article/details/78626592
selenuim无界面,docker->linux下运行环境安装
1 下载chrome需要的依赖包
yum install libX11 libXcursor libXdamage libXext libXcomposite libXi libXrandr gtk3 libappindicator-gtk3 xdg-utils libXScrnSaver liberation-fonts

2 https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm 下载离线安装包

rpm -ivh google-chrome-stable_current_x86_64.rpm (如碰到暴错,执行下面命令在安装)
yum install *lsb* -y
yum install libXss*  -y
yum install pax*

[root@localhost ~]# google-chrome --version  查看google版本 

3 下载google版本对应的chrome webdriver版本,传至linux
http://chromedriver.chromium.org/downloads


4 将chromedriver拷贝至/usr/bin里面

5 java测试代码
public static void main(String[] args) {
        WebDriver webDriver = null;
        String url = "http://fanyi.baidu.com/";
        try {
            ChromeOptions chromeOptions=new ChromeOptions();
            chromeOptions.setHeadless(Boolean.TRUE);
            chromeOptions.addArguments("--no-sandbox","--disable-dev-shm-usage","window-size=1920x3000","--disable-gpu","--hide-scrollbars","blink-settings=imagesEnabled=false","--headless");
              //启动一个 chrome 实例
             webDriver = new ChromeDriver(chromeOptions);
             //访问网址
             webDriver.get(url);
             System.out.println(webDriver.getTitle());
             webDriver.close();
             
        } catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        } finally {
            if (webDriver != null) {
                //退出 chrome
                webDriver.quit();
            }
        }
        
    }

你可能感兴趣的:(软件测试)