📅  最后修改于: 2023-12-03 14:48:06.601000             🧑  作者: Mango
在使用Selenium测试Web应用程序时,通常需要使用Geckodriver驱动程序,以便自动化测试Firefox浏览器的行为。在Ubuntu系统上,可以使用以下命令行在终端中安装Geckodriver:
sudo apt-get update
sudo apt-get install wget unzip -y
wget https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-linux64.tar.gz
tar -xvzf geckodriver-v0.29.1-linux64.tar.gz
sudo mv geckodriver /usr/local/bin/
上述命令首先更新Ubuntu包索引并安装必要的软件包wget和unzip。然后,使用wget命令下载Geckodriver的Linux 64位版本。接着,使用tar命令解压缩下载的压缩包,并将解压后的文件geckodriver移动到/usr/local/bin/目录中,以便全局使用这个文件。
完成上述安装后,可以通过以下命令检查Geckodriver是否正确安装:
geckodriver --version
如果一切正常,你应该看到如下输出:
geckodriver 0.29.1 ( 2021-06-17)
The source code of this program is available from
testing/geckodriver at https://hg.mozilla.org/mozilla-central/
现在,你已经完成了Ubuntu系统上Geckodriver的安装!