使用chrome驱动程序在centos 6.5上安装和运行无头chrome浏览器的步骤

时间:2017-09-08 06:14:37

标签: linux automation selenium-chromedriver centos7

我需要在centos 6.5上安装chrome浏览器,在这里我需要自动化一些web gui。我已经安装了chrome驱动程序。任何人都可以提供chrome-61的步骤和下载链接以及如何安装它。我的操作系统没有任何Gui。请提供命令。

我正在使用java selenium。

提前致谢

3 个答案:

答案 0 :(得分:23)

可悲的是,Google Chrome不再支持6.x.你需要CentOS 7.x。

我使用的是Cent-OS 7.4。*它工作正常。

以下是要遵循的步骤:

  • 下载chromedriver :登录Linux计算机并执行以下命令:

    $ wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
    $ sudo yum install google-chrome-stable_current_x86_64.rpm
    
    $ google-chrome --version
    Google Chrome 67.0.3396.87
    
    $ yum install Xvfb
    
    $ ps -ef | grep Xvfb
    username 12988     1  0 Oct05 ?        00:00:02 Xvfb :99 -screen 0 1152x900x8
    
    $ yum install maven
    $ mvn -version
    Apache Maven 3.0.5 (Red Hat 3.0.5-17)
    

确保您始终安装最新版本!

  • 下载Chromebrowser

    {{1}}

答案 1 :(得分:0)

这是在CentOS 6上安装Google Chrome的指南。非常感谢Intoli.com上的家伙!

它也适用于Amazon Linux和Red Hat Enterprise Linux。

https://intoli.com/blog/installing-google-chrome-on-centos/

答案 2 :(得分:0)

实际上,有一种方法可以在Amazon Linux,centos 6.x和rhel上同时运行chrome和chromedriver。使用来自较新操作系统的库的基本想法。

在此处查看全自动脚本 https://github.com/staier/chromedriver-centos6-installation

这将chromedriver安装添加到  本文的脚本:https://intoli.com/blog/installing-google-chrome-on-centos/