您当前的位置:首页 > 计算机 > 编程开发 > Python

python+selenium之获取当前url和title

时间:05-30来源:作者:点击数:

这个是python+selenium之获取当前url和title

#coding=utf-8
from selenium import webdriver
import time
driver = webdriver.Firefox()
driver.get('http://www.baidu.com')
print('Srate test=================')
title = driver.title
print(title)
#获取当前页面标题
now_url = driver.current_url
print(now_url)
#获取当前页面URL
print('End test=================')
time.sleep(2)
#等等4秒
driver.quit()
#关闭浏览器
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门