为了账号安全,请及时绑定邮箱和手机立即绑定

需要账号密码登录的网页怎么实现Python抓取

如上需要账号密码登录的网页怎么实现Python抓取

正在回答

1 回答

from selenium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support import expected_conditions as ECfrom selenium.common.exceptions import NoSuchElementExceptionfrom selenium.webdriver.common.by import By

wd = webdriver.Firefox()
wd.get("http://www.renren.com")
wd.maximize_window()try:    """这段可以查看selenium的源码,属于smart wait"""
   email = WebDriverWait(wd,timeout=10).until(EC.presence_of_element_located((By.ID,'email')),message=u'元素加载超时!')
   email.send_keys("*** 你的账号 ***")
   passwd = WebDriverWait(wd,timeout=10).until(EC.presence_of_element_located((By.ID,'password')),message=u'元素加载超时!')
   passwd.send_keys("*** 你的密码 ***")
   wd.find_element_by_id("login").click() #点击登录except NoSuchElementException as e:    print e.message

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

需要账号密码登录的网页怎么实现Python抓取

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信