python+selenium—webdriver入门
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium—webdriver入门相关的知识,希望对你有一定的参考价值。
一、浏览器最大化
二、设置浏览器分辨率大小
三、打印页面title
四、打印URL
五、控制浏览器前进或后退
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from selenium import webdriver
import time
browser = webdriver.Firefox()
#浏览器最大化
browser.maximize_window()
#设置浏览器分辨率大小
browser.set_window_size(800,600)
#访问百度首页
index_url = "http://www.baidu.com"
print
browser.title#打印页面title
print "Now access
%s"%index_url
browser.get(index_url)
time.sleep(2)
# 访问百度新闻页面
news_url = "http://news.baidu.com"
print "Now access
%s"%news_url
browser.get(news_url)
time.sleep(2)
# 返回或后退到百度首页
print "Back to
%s"%index_url
browser.back()
time.sleep(2)
#前进到百度新闻页面
print "forward to
%s"%news_url
browser.forward()
time.sleep(2)
browser.quit()
今天的知识点,大部分来自虫师blog,需要详细了解的可以查看原文;
原文链接:http://www.cnblogs.com/fnng/p/3171383.html
以上是关于python+selenium—webdriver入门的主要内容,如果未能解决你的问题,请参考以下文章
[python] python+selenium+webdriver