如何在python中使用selenium的示例


Posted in Python onDecember 26, 2017

最近基于selenium写了一个python小工具,记录下学习记录,自己运行的环境是Ubuntu 14.04.4, Python 2.7,Chromium 49.0,ChromeDriver 2.16

selenium简介

selenium提供了一个通用的接口,可模拟用户来操作浏览器,比如用于自动化测试等.

selenium的核心是WebDriver,它提供了一组接口,这些接口能够操作各种跨平台的浏览器.各大浏览器厂商.

各大浏览器厂商也支持Selenium,将其作为浏览器的一部分.

selenium工具集提供了WebDriver,Selenium IDE,Selenium-Grid等

Selenium 1.0 + WebDriver = Selenium 2.0

Selenium WebDriver是Selenium Remote Control(Selenium-RC)的继承者.

  1. WebDriver提供了更简单和简洁的接口,克服了Selenium-RC API一些限制.
  2. 相比Selenium 1.0,WebDriver是面向对象式的服务.
  3. WebDriver驱动浏览器更有效率,提供了比Selenium 1.0更多的功能
  4. Selenium RC只能在单机上运行,WebDriver则提供了远程操作的功能

selenium基本使用

selenium运行需要什么

主要包括三部分:selenium selenium,浏览器driver,浏览器selenium selenium是一组通用的接口,而不同的浏览器提供其自身的driver(大部分是官方的),浏览器则被模拟控制操作的终端.

安装

pip install selenium --upgrade
apt-get install chromium-browser
wget http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux`getconf LONG_BIT`.zip
unzip chromedriver_linux32.zip
cp chromedriver /usr/local/share
chmod +x /usr/local/share/chromedriver
ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver 
ln -s /usr/bin/chromedriver /usr/local/share/chromedriver

简单的使用

from selenium import webdriver
driver = webdriver.Chrome('/usr/local/bin/chromedriver')
driver.get('http://mail.sina.net');
print(driver.title)

API使用

可参考/usr/local/lib/python2.7/dist-packages/selenium

Chrome WebDriver

selenium.webdriver.chrome.webdriver.WebDriver(executable_path='chromedriver', port=0, chrome_options=None, service_args=None, desired_capabilities=None, service_log_path=None)

ChromeOptions

可以通过ChromeDriver session配置ChromeDriver session ChromeDriverconvenient methods for setting ChromeDriver-specific capabilities

from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--disable-extensions")
chrome_options.add_argument('--disable-logging')
chrome_options.add_experimental_option('prefs', {'download.default_directory':
'/tmp'})
chrome_options.binary_location='/usr/bin/chromium-browser'
driver = webdriver.Chrome(chrome_options=chrome_options)

直接使用DesiredCapabilities

ChromeOptions是构建在DesiredCapabilities之上的,为了使用DesiredCapabilities,必须知道capability的Key/value对.

chrome_options = Options()
capabilities={}
capabilities['platform'] = "WINDOWS"
capabilities['version'] = "10"
capabilities.update(chrome_options.to_capabilities())
driver = webdriver.Chrome(desired_capabilities=capabilities)

chromedriver运行方式

The ChromeDriver class不断的创建实例,会浪费很多的时间,可以通过两个方式解决.

使用ChromeDriverService

import selenium.webdriver.chrome.service as service
service = service.Service('/usr/bin/chromedrive')
service.start()
capabilities = { }
driver = webdriver.Remote(service.service_url, capabilities)
driver.get('http://mail.sina.net');
print(driver.title)

开启单独的ChromeDriver服务

./chromedriver
driver = webdriver.Remote('http://127.0.0.1:9515', DesiredCapabilities.CHROME)
driver.get('http://mail.sina.net');

RemoteWebDriverServer

The RemoteWebDriver is composed of two pieces: a client and a server. The client is your WebDriver test and the server is simply a Java servlet, which can be hosted in any modern JEE app server. The server will always run on the machine with the browser you want to test.

wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
java -jar selenium-server-standalone-2.53.0.jar

from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
driver = webdriver.Remote( command_executor='http://127.0.0.1:4444/wd/hub',des
desired_capabilities=DesiredCapabilities.CHROME)
driver.get('http://mail.sina.net');

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python使用mysqldb连接数据库操作方法示例详解
Dec 03 Python
Python解决鸡兔同笼问题的方法
Dec 20 Python
Python选择排序、冒泡排序、合并排序代码实例
Apr 10 Python
python 捕获 shell/bash 脚本的输出结果实例
Jan 04 Python
使用Python实现一个栈判断括号是否平衡
Aug 23 Python
获取Pytorch中间某一层权重或者特征的例子
Aug 17 Python
python实现递归查找某个路径下所有文件中的中文字符
Aug 31 Python
在OpenCV里使用Camshift算法的实现
Nov 22 Python
Django通用类视图实现忘记密码重置密码功能示例
Dec 17 Python
python3实现在二叉树中找出和为某一值的所有路径(推荐)
Dec 26 Python
Ubuntu20.04环境安装tensorflow2的方法步骤
Jan 29 Python
pytorch 使用半精度模型部署的操作
May 24 Python
Python使用Matplotlib实现Logos设计代码
Dec 25 #Python
利用Python2下载单张图片与爬取网页图片实例代码
Dec 25 #Python
Python实现生成随机数据插入mysql数据库的方法
Dec 25 #Python
python数据抓取分析的示例代码(python + mongodb)
Dec 25 #Python
Python实现生成随机日期字符串的方法示例
Dec 25 #Python
浅谈Python NLP入门教程
Dec 25 #Python
Python图形绘制操作之正弦曲线实现方法分析
Dec 25 #Python
You might like
PHP 数组遍历方法大全(foreach,list,each)
2010/06/30 PHP
PHP获取表单所有复选框的值的方法
2014/08/28 PHP
Yii2下点击验证码的切换实例代码
2017/03/14 PHP
PHP实现数组转JSon和JSon转数组的方法示例
2018/06/14 PHP
Laravel框架实现多个视图共享相同数据的方法详解
2019/07/09 PHP
IE6中使用position导致页面变形的解决方案(js代码)
2011/01/09 Javascript
读jQuery之五(取DOM元素)
2011/06/20 Javascript
js toFixed()方法的重写实现精度的统一
2014/03/06 Javascript
Node.js 的异步 IO 性能探讨
2014/10/08 Javascript
教你JS中的运算符乘方、开方及变量格式转换
2016/08/09 Javascript
AngularJS实现单独作用域内的数据操作
2016/09/05 Javascript
浅谈JavaScript事件绑定的常用方法及其优缺点分析
2016/11/01 Javascript
JS中Swiper的使用和轮播图效果
2017/08/11 Javascript
微信小程序实现底部导航
2018/11/05 Javascript
微信小程序图片加载失败时替换为默认图片的方法
2019/12/09 Javascript
vue项目前端微信JSAPI与外部H5支付相关实现过程及常见问题
2020/04/14 Javascript
[02:07]TI9显影之尘系列 - Vici Gaming
2019/08/20 DOTA
[00:43]魔廷新尊——痛苦女王至宝捆绑包
2020/06/12 DOTA
Python实现带百分比的进度条
2016/06/28 Python
Python实现屏幕截图的两种方式
2018/02/05 Python
python3 BeautifulSoup模块使用字典的方法抓取a标签内的数据示例
2019/11/28 Python
Python如何读取文件中图片格式
2020/01/13 Python
Python爬虫库BeautifulSoup的介绍与简单使用实例
2020/01/25 Python
python用700行代码实现http客户端
2021/01/14 Python
python 可视化库PyG2Plot的使用
2021/01/21 Python
CSS3的一个简单导航栏实现
2015/08/03 HTML / CSS
中国领先的专业演出票务网:永乐票务
2016/08/29 全球购物
台湾最大网路书店:博客来
2018/03/18 全球购物
什么是接口(Interface)?
2013/02/01 面试题
中软国际Java程序员笔试题
2014/07/19 面试题
法制宣传实施方案
2014/03/13 职场文书
我爱读书演讲稿
2014/05/07 职场文书
优秀乡村医生事迹材料(2016精选版)
2016/02/29 职场文书
python plt.plot bar 如何设置绘图尺寸大小
2021/06/01 Python
JavaScript 定时器详情
2021/11/11 Javascript
Nginx报404错误的详细解决方法
2022/07/23 Servers