码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu安装selenium

时间:2015-01-22 15:32:50      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:ubuntu   selenium   python   


1、安装python

Ubuntu一般情况下自带Python,可以通过以下命令查看Python版本:
Python –version


如果未安装Python,可以通过以下命令安装Python:
Sudo apt-get install python

2、安装 selenium

Selenium可以直接使用Python的pip工具安装,使用以下命令:
Pip install –U selenium


注:安装selenium需要使用root权限,不然可能导致安装失败。
如果pip没有安装可以使用下列命令安装:
Sudo apt-get install python-pip


验证:
使用终端(terminal)打开python进行验证:
from selenium import webdirver
driver = wevdirver.Firefox()
driver.ger(‘http://www.baidu.com’)


selenium自带的webdriver不支持chrome,需要单独下载chromedriver。


3、Chromedriver

Chromedriver可以在https://code.google.com/p/selenium/wiki/ChromeDriver下载,页面上有下载地址以及不同的系统需要安放的位置指导。
 
注:ubuntu下chromedriver可直接放在/usr/bin目录下;
Chromedriver共有4个版本,可以选择自己需要的版本。


墙内链接:http://yunpan.cn/cKAdEhx3KVhUB  提取码 deae

Ubuntu安装selenium

标签:ubuntu   selenium   python   

原文地址:http://blog.csdn.net/wslg1010/article/details/43019091

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!