试图抓取重定向的网页

时间:2014-10-15 17:53:16

标签: python web-scraping html-parsing

我正在尝试将数据提交到网页中的表单。但是表单实际上是在主/登录页面的重定向页面中。如何使用python进入重定向页面。我正在使用请求,我无法使用浏览器,因为我在登录此页面的身份验证时收到了SSL证书错误。

网页代码:

   <!--- Content Frame --->
   <iframe id="contentFrame"  name="contentFrame" src="/action/timesheet.action?     action=TimesheetRedirectAction" scrolling="auto" frameBorder="0"></iframe>

    <!--- WFM jQuery code --->

我的代码:

import requests
from requests.auth import HTTPBasicAuth
from bs4 import BeautifulSoup

website = 'https://qtime.qualcomm.com/login.jsp'
r = requests.get(website, auth=('username', 'password'),verify=False)

if r.status_code == 200:
     print "Login successful"

print r.content
print r.url

0 个答案:

没有答案