Python+Selenium获取百度联系我们页面的email列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium获取百度联系我们页面的email列表相关的知识,希望对你有一定的参考价值。

#coding=utf-8

from selenium import webdriver
import re

driver = webdriver.Chrome()
driver.maximize_window()
driver.implicitly_wait(6)

driver.get("http://home.baidu.com/contact.html")
# 得到页面源代码
doc = driver.page_source
emails = re.findall(r‘[\w][email protected][\w\.-]+‘,doc) # 利用正则,找出 [email protected] 的字段,保存到emails列表
# 循环打印匹配的邮箱
for email in list(set(emails)):
print (email)

driver.close()


















以上是关于Python+Selenium获取百度联系我们页面的email列表的主要内容,如果未能解决你的问题,请参考以下文章

Python+Selenium之摘取网页上全部邮箱

Python+Selenium练习(二十二)-获取页面元素大小

python3+selenium百度知道回答问题输入框这个元素定位不到,求方法 解决了肯定高悬赏加采纳?

python+selenium爬取百度文库不能下载的word文档

利用selenium自动化实现搜索框输入内容

Selenium2+python自动化13-多窗口句柄(handle)