其他分享
首页 > 其他分享> > 控制浏览器前进后退

控制浏览器前进后退

作者:互联网

# -*- coding: cp936 -*-
from selenium import webdriver

driver =  webdriver.Chrome()

first_url='http://www.baidu.com'
print ('now we are accessing to %r'%(first_url))
driver.get(first_url)
aim = driver.title

second_url='http://news.baidu.com/'
print('now we are accessing to %r'%second_url)
driver.get(second_url)

driver.back()
title=driver.title
print ('now we are at %s'%title )


if (title==aim):
    print 'ok'
else:
    print 'badcase'


---------------------------------------------------------------------------------
运行结果:
now we are accessing to 'http://www.baidu.com'
now we are accessing to 'http://news.baidu.com/'
now we are at 百度一下,你就知道
ok
'''
此段代码的实现目标是:
1.打开一个网页
2.点击网页上的一个链接, 进入新的页面
3.点击后退
4.比较后退后的网页是否是正确的上级网页(比较网页的title)
需要注意的是, 在if中如果直接输入中文字段进行比较的话会导致Unicode warning,
两个字段的编码不一致时程序直接中断比较过程并判定结果为不一致.
因为python27中一般是使用ascii码, python3中都是用Unicode编码, 就不会出现这个问题
'''

标签:baidu,浏览器,title,后退,driver,url,print,now,前进
来源: https://blog.csdn.net/qq_38722485/article/details/93190108