我想在精确的64位框中使用selenium-webdriver
chrome
或firefox
。
首先我必须安装firefox
,所以我遵循了这个实践。
http://www.installationpage.com/selenium/how-to-run-selenium-headless-firefox-in-ubuntu/
我将ppa:mozillateam/firefox-stable
添加到/etc/apt/sources.list
,然后sudo apt-get update
。
但后来我收到了这个错误。
E: Type 'ppa:mozillateam/firefox-stable' is not known on line 2 in source list /etc/apt/sources.list
E: The list of sources could not be read.
我也尝试了add-apt-repository
,但失败了command not found
错误。
如何安装firefox到precise64?或者,如果我使用另一个盒子来使用selenium webdriver,它会更好吗?
答案 0 :(得分:3)
安装firefox会导致安装很多依赖项,.e.g和桌面环境或至少轻量级的WM。
事实上,12.04.4 LTS已在其官方存储库中安装了firefox 28.0,您无需添加PPA即可获得最新的稳定版,只需执行sudo apt-get -y install firefox
即可。
顺便说一下:你收到的错误是因为它不是在/etc/sources.list.d / *下的sources.list或拆分文件中添加的正确行。列表
应该如下所示:
deb http://ppa.launchpad.net/mozillateam/firefox-next/ubuntu precise main
deb-src http://ppa.launchpad.net/mozillateam/firefox-next/ubuntu precise main
要使用add-apt-repository
命令,您必须事先安装python-software-properties
。